[][src]Struct seed::app::orders::container::OrdersContainer

pub struct OrdersContainer<Ms, Mdl, INodes> where
    Ms: 'static,
    Mdl: 'static,
    INodes: IntoNodes<Ms>, 
{ /* fields omitted */ }

Implementations

impl<Ms, Mdl, INodes> OrdersContainer<Ms, Mdl, INodes> where
    INodes: IntoNodes<Ms> + 'static, 
[src]

pub fn new(app: App<Ms, Mdl, INodes>) -> Self[src]

Trait Implementations

impl<Ms, Mdl, INodes> Orders<Ms> for OrdersContainer<Ms, Mdl, INodes> where
    Ms: 'static,
    INodes: IntoNodes<Ms> + 'static, 
[src]

type AppMs = Ms

type Mdl = Mdl

type INodes = INodes

Auto Trait Implementations

impl<Ms, Mdl, INodes> !RefUnwindSafe for OrdersContainer<Ms, Mdl, INodes>

impl<Ms, Mdl, INodes> !Send for OrdersContainer<Ms, Mdl, INodes>

impl<Ms, Mdl, INodes> !Sync for OrdersContainer<Ms, Mdl, INodes>

impl<Ms, Mdl, INodes> Unpin for OrdersContainer<Ms, Mdl, INodes> where
    Ms: Unpin

impl<Ms, Mdl, INodes> !UnwindSafe for OrdersContainer<Ms, Mdl, INodes>

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,