[][src]Struct mlsub::cons::ConstructorSet

pub struct ConstructorSet<C: Constructor> { /* fields omitted */ }

Implementations

impl<C: Constructor> ConstructorSet<C>[src]

pub fn iter(&self) -> impl Iterator<Item = &C> + Clone[src]

Trait Implementations

impl<C: Clone + Constructor> Clone for ConstructorSet<C> where
    C::Component: Clone
[src]

impl<C: Debug + Constructor> Debug for ConstructorSet<C>[src]

impl<C: Constructor> Default for ConstructorSet<C>[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for ConstructorSet<C> where
    C: RefUnwindSafe,
    <C as Constructor>::Component: RefUnwindSafe

impl<C> Send for ConstructorSet<C> where
    C: Send,
    <C as Constructor>::Component: Send

impl<C> Sync for ConstructorSet<C> where
    C: Sync,
    <C as Constructor>::Component: Sync

impl<C> Unpin for ConstructorSet<C> where
    C: Unpin,
    <C as Constructor>::Component: Unpin

impl<C> UnwindSafe for ConstructorSet<C> where
    C: RefUnwindSafe + UnwindSafe,
    <C as Constructor>::Component: RefUnwindSafe + UnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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.