pub struct ImplItemMethod {
pub attrs: Vec<Attribute>,
pub vis: Visibility,
pub defaultness: Option<Default>,
pub sig: MethodSig,
pub block: Block,
}
Expand description
A method within an impl block.
This type is available if Syn is built with the "full"
feature.
Fields§
§attrs: Vec<Attribute>
§vis: Visibility
§defaultness: Option<Default>
§sig: MethodSig
§block: Block
Trait Implementations§
Source§impl Clone for ImplItemMethod
impl Clone for ImplItemMethod
Source§fn clone(&self) -> ImplItemMethod
fn clone(&self) -> ImplItemMethod
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ImplItemMethod
impl Debug for ImplItemMethod
Source§impl From<ImplItemMethod> for ImplItem
impl From<ImplItemMethod> for ImplItem
Source§fn from(e: ImplItemMethod) -> ImplItem
fn from(e: ImplItemMethod) -> ImplItem
Converts to this type from the input type.
Source§impl Hash for ImplItemMethod
impl Hash for ImplItemMethod
Source§impl PartialEq for ImplItemMethod
impl PartialEq for ImplItemMethod
Source§impl Synom for ImplItemMethod
impl Synom for ImplItemMethod
Source§impl ToTokens for ImplItemMethod
impl ToTokens for ImplItemMethod
impl Eq for ImplItemMethod
impl StructuralPartialEq for ImplItemMethod
Auto Trait Implementations§
impl Freeze for ImplItemMethod
impl RefUnwindSafe for ImplItemMethod
impl !Send for ImplItemMethod
impl !Sync for ImplItemMethod
impl Unpin for ImplItemMethod
impl UnwindSafe for ImplItemMethod
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.