Struct syn::TraitItemConst
source · pub struct TraitItemConst {
pub attrs: Vec<Attribute>,
pub const_token: Const,
pub ident: Ident,
pub generics: Generics,
pub colon_token: Colon,
pub ty: Type,
pub default: Option<(Eq, Expr)>,
pub semi_token: Semi,
}
Expand description
An associated constant within the definition of a trait.
Fields§
§attrs: Vec<Attribute>
§const_token: Const
§ident: Ident
§generics: Generics
§colon_token: Colon
§ty: Type
§default: Option<(Eq, Expr)>
§semi_token: Semi
Trait Implementations§
source§impl Clone for TraitItemConst
impl Clone for TraitItemConst
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 Parse for TraitItemConst
impl Parse for TraitItemConst
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl ToTokens for TraitItemConst
impl ToTokens for TraitItemConst
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Auto Trait Implementations§
impl RefUnwindSafe for TraitItemConst
impl !Send for TraitItemConst
impl !Sync for TraitItemConst
impl Unpin for TraitItemConst
impl UnwindSafe for TraitItemConst
Blanket Implementations§
source§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
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.