pub struct Tuple4<T0, T1, T2, T3>(pub T0, pub T1, pub T2, pub T3);Expand description
4つの集合の直積
Tuple Fields§
§0: T0§1: T1§2: T2§3: T3Trait Implementations§
Source§impl<T0: BinaryOp, T1: BinaryOp, T2: BinaryOp, T3: BinaryOp> BinaryOp for Tuple4<T0, T1, T2, T3>
impl<T0: BinaryOp, T1: BinaryOp, T2: BinaryOp, T3: BinaryOp> BinaryOp for Tuple4<T0, T1, T2, T3>
Source§fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
二項演算$\circ$で(右側から)代入操作($a \leftarrow a \circ b$)をする。
Source§impl<T0: Identity, T1: Identity, T2: Identity, T3: Identity> Identity for Tuple4<T0, T1, T2, T3>
impl<T0: Identity, T1: Identity, T2: Identity, T3: Identity> Identity for Tuple4<T0, T1, T2, T3>
Source§impl<T0: Ord, T1: Ord, T2: Ord, T3: Ord> Ord for Tuple4<T0, T1, T2, T3>
impl<T0: Ord, T1: Ord, T2: Ord, T3: Ord> Ord for Tuple4<T0, T1, T2, T3>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T0: PartialEq, T1: PartialEq, T2: PartialEq, T3: PartialEq> PartialEq for Tuple4<T0, T1, T2, T3>
impl<T0: PartialEq, T1: PartialEq, T2: PartialEq, T3: PartialEq> PartialEq for Tuple4<T0, T1, T2, T3>
Source§impl<T0: PartialOrd, T1: PartialOrd, T2: PartialOrd, T3: PartialOrd> PartialOrd for Tuple4<T0, T1, T2, T3>
impl<T0: PartialOrd, T1: PartialOrd, T2: PartialOrd, T3: PartialOrd> PartialOrd for Tuple4<T0, T1, T2, T3>
impl<T0: Associative, T1: Associative, T2: Associative, T3: Associative> Associative for Tuple4<T0, T1, T2, T3>
impl<T0: Commutative, T1: Commutative, T2: Commutative, T3: Commutative> Commutative for Tuple4<T0, T1, T2, T3>
impl<T0: Copy, T1: Copy, T2: Copy, T3: Copy> Copy for Tuple4<T0, T1, T2, T3>
impl<T0: Eq, T1: Eq, T2: Eq, T3: Eq> Eq for Tuple4<T0, T1, T2, T3>
impl<T0: Idempotence, T1: Idempotence, T2: Idempotence, T3: Idempotence> Idempotence for Tuple4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> StructuralPartialEq for Tuple4<T0, T1, T2, T3>
Auto Trait Implementations§
impl<T0, T1, T2, T3> Freeze for Tuple4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> RefUnwindSafe for Tuple4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Send for Tuple4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Sync for Tuple4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Unpin for Tuple4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> UnwindSafe for Tuple4<T0, T1, T2, T3>
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