[][src]Struct genco::lang::LangBox

pub struct LangBox<L> where
    L: Lang
{ /* fields omitted */ }

A box containing a lang item.

Implementations

impl<L> LangBox<L> where
    L: Lang
[src]

pub fn new<T>(value: T) -> Self where
    T: LangItem<L>, 
[src]

Construct a new LangBox containing the given value.

Trait Implementations

impl<L> Clone for LangBox<L> where
    L: Lang
[src]

impl<L> Debug for LangBox<L> where
    L: Lang
[src]

impl<L> Deref for LangBox<L> where
    L: Lang
[src]

type Target = dyn LangItem<L>

The resulting type after dereferencing.

Auto Trait Implementations

impl<L> !RefUnwindSafe for LangBox<L>

impl<L> !Send for LangBox<L>

impl<L> !Sync for LangBox<L>

impl<L> Unpin for LangBox<L>

impl<L> !UnwindSafe for LangBox<L>

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> 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.