pub struct Signature {
    pub constness: Option<Const>,
    pub asyncness: Option<Async>,
    pub unsafety: Option<Unsafe>,
    pub abi: Option<Abi>,
    pub fn_token: Fn,
    pub ident: Ident,
    pub generics: Generics,
    pub paren_token: Paren,
    pub inputs: Punctuated<FnArg, Comma>,
    pub variadic: Option<Variadic>,
    pub output: ReturnType,
}
Expand description

A function signature in a trait or implementation: unsafe fn initialize(&self).

This type is available only if Syn is built with the "full" feature.

Fields

constness: Option<Const>asyncness: Option<Async>unsafety: Option<Unsafe>abi: Option<Abi>fn_token: Fnident: Identgenerics: Genericsparen_token: Pareninputs: Punctuated<FnArg, Comma>variadic: Option<Variadic>output: ReturnType

Implementations

A method’s self receiver, such as &self or self: Box<Self>.

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.