pub enum UnaryOperation {
Neg,
Not,
}Variants§
Trait Implementations§
Source§impl Clone for UnaryOperation
impl Clone for UnaryOperation
Source§fn clone(&self) -> UnaryOperation
fn clone(&self) -> UnaryOperation
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 UnaryOperation
impl Debug for UnaryOperation
Source§impl Display for UnaryOperation
impl Display for UnaryOperation
Source§impl From<UnaryOperator> for UnaryOperation
impl From<UnaryOperator> for UnaryOperation
Source§fn from(value: UnaryOperator) -> Self
fn from(value: UnaryOperator) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UnaryOperation
impl PartialEq for UnaryOperation
impl Copy for UnaryOperation
impl Eq for UnaryOperation
impl StructuralPartialEq for UnaryOperation
Auto Trait Implementations§
impl Freeze for UnaryOperation
impl RefUnwindSafe for UnaryOperation
impl Send for UnaryOperation
impl Sync for UnaryOperation
impl Unpin for UnaryOperation
impl UnwindSafe for UnaryOperation
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