[][src]Struct codegen::Enum

pub struct Enum { /* fields omitted */ }

Defines an enumeration.

Methods

impl Enum[src]

pub fn new(name: &str) -> Self[src]

Return a enum definition with the provided name.

pub fn ty(&self) -> &Type[src]

Returns a reference to the type.

pub fn vis(&mut self, vis: &str) -> &mut Self[src]

Set the enum visibility.

pub fn generic(&mut self, name: &str) -> &mut Self[src]

Add a generic to the enum.

pub fn bound<T>(&mut self, name: &str, ty: T) -> &mut Self where
    T: Into<Type>, 
[src]

Add a where bound to the enum.

pub fn doc(&mut self, docs: &str) -> &mut Self[src]

Set the enum documentation.

pub fn derive(&mut self, name: &str) -> &mut Self[src]

Add a new type that the struct should derive.

pub fn allow(&mut self, allow: &str) -> &mut Self[src]

Specify lint attribute to supress a warning or error.

pub fn repr(&mut self, repr: &str) -> &mut Self[src]

Specify representation.

pub fn new_variant(&mut self, name: &str) -> &mut Variant[src]

Push a variant to the enum, returning a mutable reference to it.

pub fn push_variant(&mut self, item: Variant) -> &mut Self[src]

Push a variant to the enum.

pub fn fmt(&self, fmt: &mut Formatter) -> Result[src]

Formats the enum using the given formatter.

Trait Implementations

impl Clone for Enum[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Enum[src]

Auto Trait Implementations

impl Send for Enum

impl Sync for Enum

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]