Struct syn::TypeBareFn
source · 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,
}Expand description
A bare function type: fn(usize) -> bool.
This type is available only if Syn is built with the "derive" or
"full" feature.
Fields§
§lifetimes: Option<BoundLifetimes>§unsafety: Option<Unsafe>§abi: Option<Abi>§fn_token: Fn§paren_token: Paren§inputs: Punctuated<BareFnArg, Comma>§variadic: Option<Variadic>§output: ReturnTypeTrait Implementations§
source§impl Clone for TypeBareFn
impl Clone for TypeBareFn
source§impl Debug for TypeBareFn
impl Debug for TypeBareFn
source§impl From<TypeBareFn> for Type
impl From<TypeBareFn> for Type
source§fn from(e: TypeBareFn) -> Type
fn from(e: TypeBareFn) -> Type
Converts to this type from the input type.