pub struct HCons<L, R: HNext<L>>(pub L, pub R);Tuple Fields§
§0: L§1: RTrait Implementations§
Source§impl<T> From<(T, T, T, T)> for HCons<T, HCons<T, HCons<T, HCons<T, HEmpty<T>>>>>
impl<T> From<(T, T, T, T)> for HCons<T, HCons<T, HCons<T, HCons<T, HEmpty<T>>>>>
Source§fn from(value: (T, T, T, T)) -> Self
fn from(value: (T, T, T, T)) -> Self
Converts to this type from the input type.
impl<L: Eq, R: Eq + HNext<L>> Eq for HCons<L, R>
impl<L, R: HNext<L>> StructuralPartialEq for HCons<L, R>
Auto Trait Implementations§
impl<L, R> Freeze for HCons<L, R>
impl<L, R> RefUnwindSafe for HCons<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for HCons<L, R>
impl<L, R> Sync for HCons<L, R>
impl<L, R> Unpin for HCons<L, R>
impl<L, R> UnwindSafe for HCons<L, R>where
L: UnwindSafe,
R: 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