Enum devise::syn::GenericArgument [−][src]
pub enum GenericArgument {
Lifetime(Lifetime),
Type(Type),
Binding(Binding),
Constraint(Constraint),
Const(Expr),
}
Expand description
An individual generic argument, like 'a
, T
, or Item = T
.
This type is available if Syn is built with the "derive"
or "full"
feature.
Variants
Lifetime(Lifetime)
A lifetime argument.
Tuple Fields of Lifetime
0: Lifetime
Type(Type)
A type argument.
Tuple Fields of Type
0: Type
Binding(Binding)
A binding (equality constraint) on an associated type: the Item = u8
in Iterator<Item = u8>
.
Tuple Fields of Binding
0: Binding
Constraint(Constraint)
An associated type bound: Iterator<Item: Display>
.
Tuple Fields of Constraint
0: Constraint
Const(Expr)
A const expression. Must be inside of a block.
NOTE: Identity expressions are represented as Type arguments, as they are indistinguishable syntactically.
Tuple Fields of Const
0: Expr
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl !RefUnwindSafe for GenericArgument
impl !Send for GenericArgument
impl !Sync for GenericArgument
impl Unpin for GenericArgument
impl UnwindSafe for GenericArgument
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns a Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty. Read more