pub struct Update8<C1, C2, C3, C4, C5, C6, C7, C8, T, F> { /* private fields */ }
Expand description
Calculates a value from the value currently in this node and 8 nodes.
Trait Implementations§
Source§impl<C1: Calc, C2: Calc, C3: Calc, C4: Calc, C5: Calc, C6: Calc, C7: Calc, C8: Calc, T: Clone, F: FnMut(&mut T, C1::Value, C2::Value, C3::Value, C4::Value, C5::Value, C6::Value, C7::Value, C8::Value) -> bool> Calc for Update8<C1, C2, C3, C4, C5, C6, C7, C8, T, F>
impl<C1: Calc, C2: Calc, C3: Calc, C4: Calc, C5: Calc, C6: Calc, C7: Calc, C8: Calc, T: Clone, F: FnMut(&mut T, C1::Value, C2::Value, C3::Value, C4::Value, C5::Value, C6::Value, C7::Value, C8::Value) -> bool> Calc for Update8<C1, C2, C3, C4, C5, C6, C7, C8, T, F>
Auto Trait Implementations§
impl<C1, C2, C3, C4, C5, C6, C7, C8, T, F> Freeze for Update8<C1, C2, C3, C4, C5, C6, C7, C8, T, F>
impl<C1, C2, C3, C4, C5, C6, C7, C8, T, F> RefUnwindSafe for Update8<C1, C2, C3, C4, C5, C6, C7, C8, T, F>where
F: RefUnwindSafe,
T: RefUnwindSafe,
C1: RefUnwindSafe,
C2: RefUnwindSafe,
C3: RefUnwindSafe,
C4: RefUnwindSafe,
C5: RefUnwindSafe,
C6: RefUnwindSafe,
C7: RefUnwindSafe,
C8: RefUnwindSafe,
impl<C1, C2, C3, C4, C5, C6, C7, C8, T, F> Send for Update8<C1, C2, C3, C4, C5, C6, C7, C8, T, F>
impl<C1, C2, C3, C4, C5, C6, C7, C8, T, F> Sync for Update8<C1, C2, C3, C4, C5, C6, C7, C8, T, F>
impl<C1, C2, C3, C4, C5, C6, C7, C8, T, F> Unpin for Update8<C1, C2, C3, C4, C5, C6, C7, C8, T, F>
impl<C1, C2, C3, C4, C5, C6, C7, C8, T, F> UnwindSafe for Update8<C1, C2, C3, C4, C5, C6, C7, C8, T, F>where
F: UnwindSafe,
T: UnwindSafe,
C1: UnwindSafe,
C2: UnwindSafe,
C3: UnwindSafe,
C4: UnwindSafe,
C5: UnwindSafe,
C6: UnwindSafe,
C7: UnwindSafe,
C8: 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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more