pub struct HashStream16<const N0: u8, const N1: u8, const N2: u8, const N3: u8, const N4: u8, const N5: u8, const N6: u8, const N7: u8, const N8: u8, const N9: u8, const N10: u8, const N11: u8, const N12: u8, const N13: u8, const N14: u8, const N15: u8>(/* private fields */);Expand description
Build a hash stream from 16 const nibble values (for 64-bit hash) Usage: HashStream16<{n0}, {n1}, …, {n15}>
Trait Implementations§
Source§impl<const N0: u8, const N1: u8, const N2: u8, const N3: u8, const N4: u8, const N5: u8, const N6: u8, const N7: u8, const N8: u8, const N9: u8, const N10: u8, const N11: u8, const N12: u8, const N13: u8, const N14: u8, const N15: u8> HashStream for HashStream16<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15>where
(): SelectNibble<N0> + SelectNibble<N1> + SelectNibble<N2> + SelectNibble<N3> + SelectNibble<N4> + SelectNibble<N5> + SelectNibble<N6> + SelectNibble<N7> + SelectNibble<N8> + SelectNibble<N9> + SelectNibble<N10> + SelectNibble<N11> + SelectNibble<N12> + SelectNibble<N13> + SelectNibble<N14> + SelectNibble<N15>,
impl<const N0: u8, const N1: u8, const N2: u8, const N3: u8, const N4: u8, const N5: u8, const N6: u8, const N7: u8, const N8: u8, const N9: u8, const N10: u8, const N11: u8, const N12: u8, const N13: u8, const N14: u8, const N15: u8> HashStream for HashStream16<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15>where
(): SelectNibble<N0> + SelectNibble<N1> + SelectNibble<N2> + SelectNibble<N3> + SelectNibble<N4> + SelectNibble<N5> + SelectNibble<N6> + SelectNibble<N7> + SelectNibble<N8> + SelectNibble<N9> + SelectNibble<N10> + SelectNibble<N11> + SelectNibble<N12> + SelectNibble<N13> + SelectNibble<N14> + SelectNibble<N15>,
type Head = <() as SelectNibble<N0>>::Out
type Tail = HashStream16<N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15, N0>
Auto Trait Implementations§
impl<const N0: u8, const N1: u8, const N2: u8, const N3: u8, const N4: u8, const N5: u8, const N6: u8, const N7: u8, const N8: u8, const N9: u8, const N10: u8, const N11: u8, const N12: u8, const N13: u8, const N14: u8, const N15: u8> Freeze for HashStream16<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15>
impl<const N0: u8, const N1: u8, const N2: u8, const N3: u8, const N4: u8, const N5: u8, const N6: u8, const N7: u8, const N8: u8, const N9: u8, const N10: u8, const N11: u8, const N12: u8, const N13: u8, const N14: u8, const N15: u8> RefUnwindSafe for HashStream16<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15>
impl<const N0: u8, const N1: u8, const N2: u8, const N3: u8, const N4: u8, const N5: u8, const N6: u8, const N7: u8, const N8: u8, const N9: u8, const N10: u8, const N11: u8, const N12: u8, const N13: u8, const N14: u8, const N15: u8> Send for HashStream16<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15>
impl<const N0: u8, const N1: u8, const N2: u8, const N3: u8, const N4: u8, const N5: u8, const N6: u8, const N7: u8, const N8: u8, const N9: u8, const N10: u8, const N11: u8, const N12: u8, const N13: u8, const N14: u8, const N15: u8> Sync for HashStream16<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15>
impl<const N0: u8, const N1: u8, const N2: u8, const N3: u8, const N4: u8, const N5: u8, const N6: u8, const N7: u8, const N8: u8, const N9: u8, const N10: u8, const N11: u8, const N12: u8, const N13: u8, const N14: u8, const N15: u8> Unpin for HashStream16<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15>
impl<const N0: u8, const N1: u8, const N2: u8, const N3: u8, const N4: u8, const N5: u8, const N6: u8, const N7: u8, const N8: u8, const N9: u8, const N10: u8, const N11: u8, const N12: u8, const N13: u8, const N14: u8, const N15: u8> UnwindSafe for HashStream16<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15>
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