pub struct Func7<C1, C2, C3, C4, C5, C6, C7, T, F> { /* private fields */ }
Expand description
Calculates a value from 7 nodes.
Trait Implementations§
Source§impl<C1: Calc, C2: Calc, C3: Calc, C4: Calc, C5: Calc, C6: Calc, C7: Calc, T: Clone + PartialEq, F: FnMut(C1::Value, C2::Value, C3::Value, C4::Value, C5::Value, C6::Value, C7::Value) -> T> Calc for Func7<C1, C2, C3, C4, C5, C6, C7, T, F>
impl<C1: Calc, C2: Calc, C3: Calc, C4: Calc, C5: Calc, C6: Calc, C7: Calc, T: Clone + PartialEq, F: FnMut(C1::Value, C2::Value, C3::Value, C4::Value, C5::Value, C6::Value, C7::Value) -> T> Calc for Func7<C1, C2, C3, C4, C5, C6, C7, T, F>
Auto Trait Implementations§
impl<C1, C2, C3, C4, C5, C6, C7, T, F> Freeze for Func7<C1, C2, C3, C4, C5, C6, C7, T, F>
impl<C1, C2, C3, C4, C5, C6, C7, T, F> RefUnwindSafe for Func7<C1, C2, C3, C4, C5, C6, C7, T, F>where
F: RefUnwindSafe,
C1: RefUnwindSafe,
C2: RefUnwindSafe,
C3: RefUnwindSafe,
C4: RefUnwindSafe,
C5: RefUnwindSafe,
C6: RefUnwindSafe,
C7: RefUnwindSafe,
T: RefUnwindSafe,
impl<C1, C2, C3, C4, C5, C6, C7, T, F> Send for Func7<C1, C2, C3, C4, C5, C6, C7, T, F>
impl<C1, C2, C3, C4, C5, C6, C7, T, F> Sync for Func7<C1, C2, C3, C4, C5, C6, C7, T, F>
impl<C1, C2, C3, C4, C5, C6, C7, T, F> Unpin for Func7<C1, C2, C3, C4, C5, C6, C7, T, F>
impl<C1, C2, C3, C4, C5, C6, C7, T, F> UnwindSafe for Func7<C1, C2, C3, C4, C5, C6, C7, T, F>where
F: UnwindSafe,
C1: UnwindSafe,
C2: UnwindSafe,
C3: UnwindSafe,
C4: UnwindSafe,
C5: UnwindSafe,
C6: UnwindSafe,
C7: UnwindSafe,
T: 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