Enum syn::FnArg [−][src]
An argument in a function signature: the n: usize
in fn f(n: usize)
.
This type is available only if Syn is built with the "full"
feature.
Variants
Receiver(Receiver)
The self
argument of an associated method, whether taken by value
or by reference.
Note that self
receivers with a specified type, such as self: Box<Self>
, are parsed as a FnArg::Typed
.
Typed(PatType)
A function argument accepted by pattern and type.
Trait Implementations
impl Clone for FnArg
[src]
impl Clone for FnArg
[src]fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl ToTokens for FnArg
[src]
impl ToTokens for FnArg
[src]