pub struct MCons<A, Tail>(/* private fields */);Expand description
Type-level cons: sub-API A has been mounted, followed by Tail.
Trait Implementations§
impl<A, Tail> HasMount<A, MHere> for MCons<A, Tail>
impl<A, Head, Tail, Idx> HasMount<A, MThere<Idx>> for MCons<Head, Tail>where
Tail: HasMount<A, Idx>,
Auto Trait Implementations§
impl<A, Tail> Freeze for MCons<A, Tail>
impl<A, Tail> RefUnwindSafe for MCons<A, Tail>where
A: RefUnwindSafe,
Tail: RefUnwindSafe,
impl<A, Tail> Send for MCons<A, Tail>
impl<A, Tail> Sync for MCons<A, Tail>
impl<A, Tail> Unpin for MCons<A, Tail>
impl<A, Tail> UnsafeUnpin for MCons<A, Tail>
impl<A, Tail> UnwindSafe for MCons<A, Tail>where
A: 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