pub struct BitXor<T>(/* private fields */);Expand description
排他的論理和を演算とする代数的構造
Implementations§
Trait Implementations§
Source§impl BinaryOp for BitXor<u128>
impl BinaryOp for BitXor<u128>
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 BinaryOp for BitXor<u16>
impl BinaryOp for BitXor<u16>
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 BinaryOp for BitXor<u32>
impl BinaryOp for BitXor<u32>
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 BinaryOp for BitXor<u64>
impl BinaryOp for BitXor<u64>
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 BinaryOp for BitXor<u8>
impl BinaryOp for BitXor<u8>
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 BinaryOp for BitXor<usize>
impl BinaryOp for BitXor<usize>
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<T: Ord> Ord for BitXor<T>
impl<T: Ord> Ord for BitXor<T>
Source§impl<T: PartialOrd> PartialOrd for BitXor<T>
impl<T: PartialOrd> PartialOrd for BitXor<T>
impl Associative for BitXor<u128>
impl Associative for BitXor<u16>
impl Associative for BitXor<u32>
impl Associative for BitXor<u64>
impl Associative for BitXor<u8>
impl Associative for BitXor<usize>
impl Commutative for BitXor<u128>
impl Commutative for BitXor<u16>
impl Commutative for BitXor<u32>
impl Commutative for BitXor<u64>
impl Commutative for BitXor<u8>
impl Commutative for BitXor<usize>
impl<T: Copy> Copy for BitXor<T>
impl<T: Eq> Eq for BitXor<T>
impl<T> StructuralPartialEq for BitXor<T>
Auto Trait Implementations§
impl<T> Freeze for BitXor<T>
impl<T> RefUnwindSafe for BitXor<T>where
T: RefUnwindSafe,
impl<T> Send for BitXor<T>where
T: Send,
impl<T> Sync for BitXor<T>where
T: Sync,
impl<T> Unpin for BitXor<T>where
T: Unpin,
impl<T> UnwindSafe for BitXor<T>where
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