pub struct ContextStack<Head, Tail> {
pub head: Head,
pub tail: Tail,
}
Fields§
§head: Head
§tail: Tail
Trait Implementations§
Source§impl<H, T> ContextParent for ContextStack<H, T>
impl<H, T> ContextParent for ContextStack<H, T>
Source§impl<Unit, Tail> Has<Unit, ()> for ContextStack<Unit, Tail>
impl<Unit, Tail> Has<Unit, ()> for ContextStack<Unit, Tail>
Auto Trait Implementations§
impl<Head, Tail> Freeze for ContextStack<Head, Tail>
impl<Head, Tail> RefUnwindSafe for ContextStack<Head, Tail>where
Head: RefUnwindSafe,
Tail: RefUnwindSafe,
impl<Head, Tail> Send for ContextStack<Head, Tail>
impl<Head, Tail> Sync for ContextStack<Head, Tail>
impl<Head, Tail> Unpin for ContextStack<Head, Tail>
impl<Head, Tail> UnwindSafe for ContextStack<Head, Tail>where
Head: UnwindSafe,
Tail: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more