pub struct Signature {
pub fn_token: Fn,
pub ident: Ident,
pub generics: Generics,
pub paren_token: Paren,
pub inputs: Punctuated<FnArg, Comma>,
pub output: ReturnType,
pub requires: Option<Requires>,
pub ensures: Option<Ensures>,
}
Fields§
§fn_token: Fn
§ident: Ident
§generics: Generics
§paren_token: Paren
§inputs: Punctuated<FnArg, Comma>
§output: ReturnType
§requires: Option<Requires>
§ensures: Option<Ensures>
Implementations§
Source§impl Signature
impl Signature
fn to_tokens_inner(&self, tokens: &mut TokenStream, mode: Mode)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Signature
impl RefUnwindSafe for Signature
impl !Send for Signature
impl !Sync for Signature
impl Unpin for Signature
impl UnwindSafe for Signature
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