[][src]Struct syn::TypeBareFn

pub struct TypeBareFn {
    pub lifetimes: Option<BoundLifetimes>,
    pub unsafety: Option<Unsafe>,
    pub abi: Option<Abi>,
    pub fn_token: Fn,
    pub paren_token: Paren,
    pub inputs: Punctuated<BareFnArg, Comma>,
    pub variadic: Option<Variadic>,
    pub output: ReturnType,
}

A bare function type: fn(usize) -> bool.

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

Fields

lifetimes: Option<BoundLifetimes>unsafety: Option<Unsafe>abi: Option<Abi>fn_token: Fnparen_token: Pareninputs: Punctuated<BareFnArg, Comma>variadic: Option<Variadic>output: ReturnType

Trait Implementations

impl Clone for TypeBareFn[src]

impl Debug for TypeBareFn[src]

impl Eq for TypeBareFn[src]

impl From<TypeBareFn> for Type[src]

impl Hash for TypeBareFn[src]

impl Parse for TypeBareFn[src]

impl PartialEq<TypeBareFn> for TypeBareFn[src]

impl StructuralEq for TypeBareFn[src]

impl StructuralPartialEq for TypeBareFn[src]

impl ToTokens for TypeBareFn[src]

Auto Trait Implementations

impl !RefUnwindSafe for TypeBareFn

impl !Send for TypeBareFn

impl !Sync for TypeBareFn

impl Unpin for TypeBareFn

impl UnwindSafe for TypeBareFn

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Spanned for T where
    T: Spanned + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.