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<BareVariadic>,
pub output: ReturnType,
}Expand description
A bare function type: fn(usize) -> bool.
Fields§
§lifetimes: Option<BoundLifetimes>§unsafety: Option<Unsafe>§abi: Option<Abi>§fn_token: Fn§paren_token: Paren§inputs: Punctuated<BareFnArg, Comma>§variadic: Option<BareVariadic>§output: ReturnTypeTrait Implementations§
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.
Auto Trait Implementations§
impl Freeze for TypeBareFn
impl RefUnwindSafe for TypeBareFn
impl !Send for TypeBareFn
impl !Sync for TypeBareFn
impl Unpin for TypeBareFn
impl UnwindSafe for TypeBareFn
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more