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

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

A box containing a lang item.

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.

impl<'a> From<&'a Import> for LangBox<Csharp>[src]

impl<'a> From<&'a Import> for LangBox<Dart>[src]

impl<'a> From<&'a Import> for LangBox<Go>[src]

impl<'a> From<&'a Import> for LangBox<Java>[src]

impl<'a> From<&'a Import> for LangBox<JavaScript>[src]

impl<'a> From<&'a Import> for LangBox<Python>[src]

impl<'a> From<&'a Import> for LangBox<Rust>[src]

impl<'a> From<&'a Import> for LangBox<Swift>[src]

impl<'a> From<&'a ImportDefault> for LangBox<JavaScript>[src]

impl<'a> From<&'a ImportModule> for LangBox<Python>[src]

impl<L> From<Box<dyn LangItem<L> + 'static>> for LangBox<L> where
    L: Lang
[src]

impl From<Import> for LangBox<Csharp>[src]

impl From<Import> for LangBox<Dart>[src]

impl From<Import> for LangBox<Go>[src]

impl From<Import> for LangBox<Java>[src]

impl From<Import> for LangBox<JavaScript>[src]

impl From<Import> for LangBox<Python>[src]

impl From<Import> for LangBox<Rust>[src]

impl From<Import> for LangBox<Swift>[src]

impl From<ImportDefault> for LangBox<JavaScript>[src]

impl From<ImportModule> for LangBox<Python>[src]

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.