pub struct HNil;
Expand description
The empty type-level list.
Trait Implementations§
Source§impl<List: HList> IntersectUnchecked<List> for HNil
impl<List: HList> IntersectUnchecked<List> for HNil
impl HList for HNil
impl SortedHList for HNil
Auto Trait Implementations§
impl Freeze for HNil
impl RefUnwindSafe for HNil
impl Send for HNil
impl Sync for HNil
impl Unpin for HNil
impl UnwindSafe for HNil
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
Source§impl<LA, LB> Intersect<LB> for LA
impl<LA, LB> Intersect<LB> for LA
Source§type Output = <LA as IntersectUnchecked<LB>>::Output
type Output = <LA as IntersectUnchecked<LB>>::Output
Intersection of two sorted lists. Must itself be an
HList
.