pub enum BitwiseOperator {
And,
Or,
Xor,
Not,
}Variants§
Trait Implementations§
Source§impl Clone for BitwiseOperator
impl Clone for BitwiseOperator
Source§fn clone(&self) -> BitwiseOperator
fn clone(&self) -> BitwiseOperator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BitwiseOperator
impl Debug for BitwiseOperator
Source§impl Display for BitwiseOperator
impl Display for BitwiseOperator
Source§impl From<&BitwiseOperator> for InstructionCode
impl From<&BitwiseOperator> for InstructionCode
Source§fn from(op: &BitwiseOperator) -> Self
fn from(op: &BitwiseOperator) -> Self
Converts to this type from the input type.
Source§impl From<BitwiseOperator> for BinaryOperator
impl From<BitwiseOperator> for BinaryOperator
Source§fn from(op: BitwiseOperator) -> Self
fn from(op: BitwiseOperator) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BitwiseOperator
impl PartialEq for BitwiseOperator
impl Copy for BitwiseOperator
impl StructuralPartialEq for BitwiseOperator
Auto Trait Implementations§
impl Freeze for BitwiseOperator
impl RefUnwindSafe for BitwiseOperator
impl Send for BitwiseOperator
impl Sync for BitwiseOperator
impl Unpin for BitwiseOperator
impl UnsafeUnpin for BitwiseOperator
impl UnwindSafe for BitwiseOperator
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> CustomError for T
impl<T> CustomError for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more