[][src]Struct derive_utils::EnumElements

pub struct EnumElements<'a> {
    pub attrs: &'a [Attribute],
    pub vis: &'a Visibility,
    pub ident: &'a Ident,
    pub generics: &'a Generics,
    pub variants: &'a Punctuated<Variant, Comma>,
}

The elements that compose enums.

Fields

attrs: &'a [Attribute]

Attributes tagged on the whole enum.

vis: &'a Visibility

Visibility of the enum.

ident: &'a Ident

Name of the enum.

generics: &'a Generics

Generics required to complete the definition.

variants: &'a Punctuated<Variant, Comma>

Auto Trait Implementations

impl<'a> !Send for EnumElements<'a>

impl<'a> Unpin for EnumElements<'a>

impl<'a> !Sync for EnumElements<'a>

impl<'a> !UnwindSafe for EnumElements<'a>

impl<'a> !RefUnwindSafe for EnumElements<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]