pub struct MethodSig {
pub constness: Option<Const>,
pub unsafety: Option<Unsafe>,
pub abi: Option<Abi>,
pub ident: Ident,
pub decl: FnDecl,
}
Expand description
A method’s signature in a trait or implementation: unsafe fn initialize(&self)
.
This type is available if Syn is built with the "full"
feature.
Fields§
§constness: Option<Const>
§unsafety: Option<Unsafe>
§abi: Option<Abi>
§ident: Ident
§decl: FnDecl
Trait Implementations§
impl Eq for MethodSig
impl StructuralPartialEq for MethodSig
Auto Trait Implementations§
impl Freeze for MethodSig
impl RefUnwindSafe for MethodSig
impl !Send for MethodSig
impl !Sync for MethodSig
impl Unpin for MethodSig
impl UnwindSafe for MethodSig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Spanned for Twhere
T: ToTokens,
impl<T> Spanned for Twhere
T: ToTokens,
Source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.