Struct syn::WhereClause
source · pub struct WhereClause {
pub where_token: Where,
pub predicates: Punctuated<WherePredicate, Comma>,
}
Expand description
A where
clause in a definition: where T: Deserialize<'de>, D: 'static
.
Fields§
§where_token: Where
§predicates: Punctuated<WherePredicate, Comma>