pub enum BwKind {
And,
Or,
Xor,
}Expand description
The kind of bitwise operation to apply block-wise.
Variants§
And
Bitwise AND — each output block is a & b.
Or
Bitwise OR — each output block is a | b.
Xor
Bitwise XOR — each output block is a ^ b.
Auto Trait Implementations§
impl Freeze for BwKind
impl RefUnwindSafe for BwKind
impl Send for BwKind
impl Sync for BwKind
impl Unpin for BwKind
impl UnsafeUnpin for BwKind
impl UnwindSafe for BwKind
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