pub enum TraitItem {
Const(TraitItemConst),
Method(TraitItemMethod),
Type(TraitItemType),
Macro(TraitItemMacro),
Verbatim(TraitItemVerbatim),
}
Expand description
An item declaration within the definition of a trait.
This type is available if Syn is built with the "full"
feature.
§Syntax tree enum
This type is a syntax tree enum.
Variants§
Const(TraitItemConst)
An associated constant within the definition of a trait.
This type is available if Syn is built with the "full"
feature.
Method(TraitItemMethod)
A trait method within the definition of a trait.
This type is available if Syn is built with the "full"
feature.
Type(TraitItemType)
An associated type within the definition of a trait.
This type is available if Syn is built with the "full"
feature.
Macro(TraitItemMacro)
A macro invocation within the definition of a trait.
This type is available if Syn is built with the "full"
feature.
Verbatim(TraitItemVerbatim)
Tokens within the definition of a trait not interpreted by Syn.
This type is available if Syn is built with the "full"
feature.
Trait Implementations§
Source§impl From<TraitItemConst> for TraitItem
impl From<TraitItemConst> for TraitItem
Source§fn from(e: TraitItemConst) -> TraitItem
fn from(e: TraitItemConst) -> TraitItem
Converts to this type from the input type.
Source§impl From<TraitItemMacro> for TraitItem
impl From<TraitItemMacro> for TraitItem
Source§fn from(e: TraitItemMacro) -> TraitItem
fn from(e: TraitItemMacro) -> TraitItem
Converts to this type from the input type.
Source§impl From<TraitItemMethod> for TraitItem
impl From<TraitItemMethod> for TraitItem
Source§fn from(e: TraitItemMethod) -> TraitItem
fn from(e: TraitItemMethod) -> TraitItem
Converts to this type from the input type.
Source§impl From<TraitItemType> for TraitItem
impl From<TraitItemType> for TraitItem
Source§fn from(e: TraitItemType) -> TraitItem
fn from(e: TraitItemType) -> TraitItem
Converts to this type from the input type.
Source§impl From<TraitItemVerbatim> for TraitItem
impl From<TraitItemVerbatim> for TraitItem
Source§fn from(e: TraitItemVerbatim) -> TraitItem
fn from(e: TraitItemVerbatim) -> TraitItem
Converts to this type from the input type.
impl Eq for TraitItem
impl StructuralPartialEq for TraitItem
Auto Trait Implementations§
impl Freeze for TraitItem
impl RefUnwindSafe for TraitItem
impl !Send for TraitItem
impl !Sync for TraitItem
impl Unpin for TraitItem
impl UnwindSafe for TraitItem
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.