Struct devise::syn::ImplItemConst [−][src]
pub struct ImplItemConst {
pub attrs: Vec<Attribute, Global>,
pub vis: Visibility,
pub defaultness: Option<Default>,
pub const_token: Const,
pub ident: Ident,
pub colon_token: Colon,
pub ty: Type,
pub eq_token: Eq,
pub expr: Expr,
pub semi_token: Semi,
}Expand description
An associated constant within an impl block.
This type is available if Syn is built with the "full" feature.
Fields
attrs: Vec<Attribute, Global>vis: Visibilitydefaultness: Option<Default>const_token: Constident: Identcolon_token: Colonty: Typeeq_token: Eqexpr: Exprsemi_token: SemiTrait Implementations
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl !RefUnwindSafe for ImplItemConst
impl !Send for ImplItemConst
impl !Sync for ImplItemConst
impl Unpin for ImplItemConst
impl UnwindSafe for ImplItemConst
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns a Span covering the complete contents of this syntax tree
node, or Span::call_site() if this node is empty. Read more