pub struct Tuple3<T0, T1, T2>(pub T0, pub T1, pub T2);Expand description
3つの集合の直積
Tuple Fields§
§0: T0§1: T1§2: T2Trait Implementations§
Source§impl<T0: BinaryOp, T1: BinaryOp, T2: BinaryOp> BinaryOp for Tuple3<T0, T1, T2>
impl<T0: BinaryOp, T1: BinaryOp, T2: BinaryOp> BinaryOp for Tuple3<T0, T1, T2>
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: Ord, T1: Ord, T2: Ord> Ord for Tuple3<T0, T1, T2>
impl<T0: Ord, T1: Ord, T2: Ord> Ord for Tuple3<T0, T1, T2>
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: PartialOrd, T1: PartialOrd, T2: PartialOrd> PartialOrd for Tuple3<T0, T1, T2>
impl<T0: PartialOrd, T1: PartialOrd, T2: PartialOrd> PartialOrd for Tuple3<T0, T1, T2>
impl<T0: Associative, T1: Associative, T2: Associative> Associative for Tuple3<T0, T1, T2>
impl<T0: Commutative, T1: Commutative, T2: Commutative> Commutative for Tuple3<T0, T1, T2>
impl<T0: Copy, T1: Copy, T2: Copy> Copy for Tuple3<T0, T1, T2>
impl<T0: Eq, T1: Eq, T2: Eq> Eq for Tuple3<T0, T1, T2>
impl<T0: Idempotence, T1: Idempotence, T2: Idempotence> Idempotence for Tuple3<T0, T1, T2>
impl<T0, T1, T2> StructuralPartialEq for Tuple3<T0, T1, T2>
Auto Trait Implementations§
impl<T0, T1, T2> Freeze for Tuple3<T0, T1, T2>
impl<T0, T1, T2> RefUnwindSafe for Tuple3<T0, T1, T2>
impl<T0, T1, T2> Send for Tuple3<T0, T1, T2>
impl<T0, T1, T2> Sync for Tuple3<T0, T1, T2>
impl<T0, T1, T2> Unpin for Tuple3<T0, T1, T2>
impl<T0, T1, T2> UnwindSafe for Tuple3<T0, T1, T2>
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