Struct derive_utils::EnumImpl[][src]

pub struct EnumImpl<'a> { /* fields omitted */ }

A builder for implementing a trait for enums.

Implementations

impl<'a> EnumImpl<'a>[src]

pub fn new(data: &'a EnumData) -> Self[src]

Creates a new EnumImpl.

pub fn from_trait<I>(
    data: &'a EnumData,
    trait_path: Path,
    supertraits_types: I,
    trait_def: ItemTrait
) -> Self where
    I: IntoIterator<Item = Ident>,
    I::IntoIter: ExactSizeIterator
[src]

Creates a new EnumImpl from a trait definition.

The following items are ignored:

Panics

Panics if a trait method has a body, no receiver, or a receiver other than the following:

  • &self
  • &mut self
  • self
  • self: Pin<&Self>
  • self: Pin<&mut Self>

pub fn set_trait(&mut self, path: Path)[src]

pub fn push_generic_param(&mut self, param: GenericParam)[src]

Appends a generic type parameter to the back of generics.

pub fn push_where_predicate(&mut self, predicate: WherePredicate)[src]

Appends a predicate to the back of where-clause.

pub fn push_item(&mut self, item: ImplItem)[src]

Appends an item to impl items.

pub fn push_method(&mut self, item: TraitItemMethod)[src]

Appends a method to impl items.

Panics

Panics if a trait method has a body, no receiver, or a receiver other than the following:

  • &self
  • &mut self
  • self
  • self: Pin<&Self>
  • self: Pin<&mut Self>

pub fn append_items_from_trait(&mut self, trait_def: ItemTrait)[src]

Appends items from a trait definition to impl items.

Panics

Panics if a trait method has a body, no receiver, or a receiver other than the following:

  • &self
  • &mut self
  • self
  • self: Pin<&Self>
  • self: Pin<&mut Self>

pub fn build(self) -> TokenStream[src]

pub fn build_impl(self) -> ItemImpl[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for EnumImpl<'a>

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

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

impl<'a> Unpin for EnumImpl<'a>

impl<'a> UnwindSafe for EnumImpl<'a>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.