pub struct Tuple5<T0, T1, T2, T3, T4>(pub T0, pub T1, pub T2, pub T3, pub T4);Tuple Fields§
§0: T0§1: T1§2: T2§3: T3§4: T4Trait Implementations§
Source§impl<T0: Clone, T1: Clone, T2: Clone, T3: Clone, T4: Clone> Clone for Tuple5<T0, T1, T2, T3, T4>
impl<T0: Clone, T1: Clone, T2: Clone, T3: Clone, T4: Clone> Clone for Tuple5<T0, T1, T2, T3, T4>
Source§impl<T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug> Debug for Tuple5<T0, T1, T2, T3, T4>
impl<T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug> Debug for Tuple5<T0, T1, T2, T3, T4>
Source§impl<T0: PartialEq, T1: PartialEq, T2: PartialEq, T3: PartialEq, T4: PartialEq> PartialEq for Tuple5<T0, T1, T2, T3, T4>
impl<T0: PartialEq, T1: PartialEq, T2: PartialEq, T3: PartialEq, T4: PartialEq> PartialEq for Tuple5<T0, T1, T2, T3, T4>
impl<T0: Eq, T1: Eq, T2: Eq, T3: Eq, T4: Eq> Eq for Tuple5<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> StructuralPartialEq for Tuple5<T0, T1, T2, T3, T4>
Auto Trait Implementations§
impl<T0, T1, T2, T3, T4> Freeze for Tuple5<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> RefUnwindSafe for Tuple5<T0, T1, T2, T3, T4>where
T0: RefUnwindSafe,
T1: RefUnwindSafe,
T2: RefUnwindSafe,
T3: RefUnwindSafe,
T4: RefUnwindSafe,
impl<T0, T1, T2, T3, T4> Send for Tuple5<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> Sync for Tuple5<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> Unpin for Tuple5<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> UnsafeUnpin for Tuple5<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> UnwindSafe for Tuple5<T0, T1, T2, T3, T4>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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