pub struct Tuple6<T0, T1, T2, T3, T4, T5>(pub T0, pub T1, pub T2, pub T3, pub T4, pub T5);Tuple Fields§
§0: T0§1: T1§2: T2§3: T3§4: T4§5: T5Trait Implementations§
Source§impl<T0: Clone, T1: Clone, T2: Clone, T3: Clone, T4: Clone, T5: Clone> Clone for Tuple6<T0, T1, T2, T3, T4, T5>
impl<T0: Clone, T1: Clone, T2: Clone, T3: Clone, T4: Clone, T5: Clone> Clone for Tuple6<T0, T1, T2, T3, T4, T5>
Source§impl<T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug> Debug for Tuple6<T0, T1, T2, T3, T4, T5>
impl<T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug> Debug for Tuple6<T0, T1, T2, T3, T4, T5>
Source§impl<T0: PartialEq, T1: PartialEq, T2: PartialEq, T3: PartialEq, T4: PartialEq, T5: PartialEq> PartialEq for Tuple6<T0, T1, T2, T3, T4, T5>
impl<T0: PartialEq, T1: PartialEq, T2: PartialEq, T3: PartialEq, T4: PartialEq, T5: PartialEq> PartialEq for Tuple6<T0, T1, T2, T3, T4, T5>
impl<T0: Eq, T1: Eq, T2: Eq, T3: Eq, T4: Eq, T5: Eq> Eq for Tuple6<T0, T1, T2, T3, T4, T5>
impl<T0, T1, T2, T3, T4, T5> StructuralPartialEq for Tuple6<T0, T1, T2, T3, T4, T5>
Auto Trait Implementations§
impl<T0, T1, T2, T3, T4, T5> Freeze for Tuple6<T0, T1, T2, T3, T4, T5>
impl<T0, T1, T2, T3, T4, T5> RefUnwindSafe for Tuple6<T0, T1, T2, T3, T4, T5>where
T0: RefUnwindSafe,
T1: RefUnwindSafe,
T2: RefUnwindSafe,
T3: RefUnwindSafe,
T4: RefUnwindSafe,
T5: RefUnwindSafe,
impl<T0, T1, T2, T3, T4, T5> Send for Tuple6<T0, T1, T2, T3, T4, T5>
impl<T0, T1, T2, T3, T4, T5> Sync for Tuple6<T0, T1, T2, T3, T4, T5>
impl<T0, T1, T2, T3, T4, T5> Unpin for Tuple6<T0, T1, T2, T3, T4, T5>
impl<T0, T1, T2, T3, T4, T5> UnsafeUnpin for Tuple6<T0, T1, T2, T3, T4, T5>where
T0: UnsafeUnpin,
T1: UnsafeUnpin,
T2: UnsafeUnpin,
T3: UnsafeUnpin,
T4: UnsafeUnpin,
T5: UnsafeUnpin,
impl<T0, T1, T2, T3, T4, T5> UnwindSafe for Tuple6<T0, T1, T2, T3, T4, T5>where
T0: UnwindSafe,
T1: UnwindSafe,
T2: UnwindSafe,
T3: UnwindSafe,
T4: UnwindSafe,
T5: 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> 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