Struct syn::TraitItemConst [−][src]
pub struct TraitItemConst {
pub attrs: Vec<Attribute>,
pub const_token: Const,
pub ident: Ident,
pub colon_token: Colon,
pub ty: Type,
pub default: Option<(Eq, Expr)>,
pub semi_token: Semi,
}An associated constant within the definition of a trait.
This type is available if Syn is built with the "full" feature.
Fields
attrs: Vec<Attribute>
const_token: Const
ident: Ident
colon_token: Colon
ty: Type
default: Option<(Eq, Expr)>
semi_token: Semi
Trait Implementations
impl Synom for TraitItemConst[src]
impl Synom for TraitItemConstfn parse(i: Cursor) -> PResult<Self>[src]
fn parse(i: Cursor) -> PResult<Self>fn description() -> Option<&'static str>[src]
fn description() -> Option<&'static str>A short name of the type being parsed. Read more
impl ToTokens for TraitItemConst[src]
impl ToTokens for TraitItemConstfn to_tokens(&self, tokens: &mut Tokens)[src]
fn to_tokens(&self, tokens: &mut Tokens)Write self to the given Tokens. Read more
fn into_tokens(self) -> Tokens[src]
fn into_tokens(self) -> TokensConvert self directly into a Tokens object. Read more
impl Clone for TraitItemConst[src]
impl Clone for TraitItemConstfn clone(&self) -> TraitItemConst[src]
fn clone(&self) -> TraitItemConstReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl From<TraitItemConst> for TraitItem[src]
impl From<TraitItemConst> for TraitItemfn from(e: TraitItemConst) -> TraitItem[src]
fn from(e: TraitItemConst) -> TraitItemPerforms the conversion.
Auto Trait Implementations
impl !Send for TraitItemConst
impl !Send for TraitItemConstimpl !Sync for TraitItemConst
impl !Sync for TraitItemConst