[][src]Struct static_context::ContextStack

pub struct ContextStack<Head, Tail> {
    pub head: Head,
    pub tail: Tail,
}

Fields

head: Headtail: Tail

Trait Implementations

impl<H, T> ContextParent for ContextStack<H, T>[src]

impl<Unit, Tail> Has<Unit, ()> for ContextStack<Unit, Tail>[src]

impl<Unit, Head, Tail, TailProof> Has<Unit, Next<TailProof>> for ContextStack<Head, Tail> where
    Tail: Has<Unit, TailProof>, 
[src]

Auto Trait Implementations

impl<Head, Tail> RefUnwindSafe for ContextStack<Head, Tail> where
    Head: RefUnwindSafe,
    Tail: RefUnwindSafe

impl<Head, Tail> Send for ContextStack<Head, Tail> where
    Head: Send,
    Tail: Send

impl<Head, Tail> Sync for ContextStack<Head, Tail> where
    Head: Sync,
    Tail: Sync

impl<Head, Tail> Unpin for ContextStack<Head, Tail> where
    Head: Unpin,
    Tail: Unpin

impl<Head, Tail> UnwindSafe for ContextStack<Head, Tail> where
    Head: UnwindSafe,
    Tail: 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, 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.