Skip to main content

HasMount

Trait HasMount 

Source
pub trait HasMount<A, Idx> { }
Expand description

Asserts that sub-API A is in the mounted list M.

Implementors§

Source§

impl<A, Head, Tail, Idx> HasMount<A, MThere<Idx>> for MCons<Head, Tail>
where Tail: HasMount<A, Idx>,

Source§

impl<A, Tail> HasMount<A, MHere> for MCons<A, Tail>