59//! variants, it is represented as a count of 0.
60//!
61▶//! # "`cs`" functions
62//!
63//! The `cs_...` functions ("combine substructure") are designed to
· · ·
63▶//! The `cs_...` functions ("combine substructure") are designed to
64//! make life easier by providing some pre-made recipes for common
65//! threads; mostly calling the function being derived on all the
· · ·
65▶//! threads; mostly calling the function being derived on all the
66//! arguments and then combining them back together in some way (or
67//! letting the user chose that). They are not meant to be the only
· · ·
240 pub generics: Bounds,
241
242▶ /// Is there is a `&self` argument? If not, it is a static function.
243 pub explicit_self: bool,
244
· · ·
253 pub fieldless_variants_strategy: FieldlessVariantsStrategy,
254
255▶ pub combine_substructure: RefCell<CombineSubstructureFunc<'a>>,
256}
257
+ 9 more matches in this file