Enum syn::GenericMethodArgument
[−]
[src]
pub enum GenericMethodArgument { Type(Type), Const(Expr), }
An individual generic argument to a method, like T
.
This type is available if Syn is built with the "full"
feature.
Variants
Type(Type)
A type argument.
Const(Expr)
A const expression. Must be inside of a block.
NOTE: Identity expressions are represented as Type arguments, as they are indistinguishable syntactically.
Trait Implementations
impl Synom for GenericMethodArgument
[src]
impl ToTokens for GenericMethodArgument
[src]
fn to_tokens(&self, tokens: &mut Tokens)
[src]
Write self
to the given Tokens
. Read more
fn into_tokens(self) -> Tokens
[src]
Convert self
directly into a Tokens
object. Read more
impl Clone for GenericMethodArgument
[src]
fn clone(&self) -> GenericMethodArgument
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more