pub enum BitOp {
And,
Or,
Xor,
Not,
}Expand description
Operator for Store::bitop.
Variants§
And
Bitwise AND across source keys.
Or
Bitwise OR across source keys.
Xor
Bitwise XOR across source keys.
Not
Bitwise NOT — exactly one source key.
Trait Implementations§
impl Copy for BitOp
impl Eq for BitOp
impl StructuralPartialEq for BitOp
Auto Trait Implementations§
impl Freeze for BitOp
impl RefUnwindSafe for BitOp
impl Send for BitOp
impl Sync for BitOp
impl Unpin for BitOp
impl UnsafeUnpin for BitOp
impl UnwindSafe for BitOp
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