pub enum UnaryOperator {
    Negate,
    LogicalNot,
    BitwiseNot,
}Expand description
Operation that can be applied on a single value.
Variants§
Trait Implementations§
Source§impl Clone for UnaryOperator
 
impl Clone for UnaryOperator
Source§fn clone(&self) -> UnaryOperator
 
fn clone(&self) -> UnaryOperator
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 UnaryOperator
 
impl Debug for UnaryOperator
Source§impl Hash for UnaryOperator
 
impl Hash for UnaryOperator
Source§impl Ord for UnaryOperator
 
impl Ord for UnaryOperator
Source§fn cmp(&self, other: &UnaryOperator) -> Ordering
 
fn cmp(&self, other: &UnaryOperator) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for UnaryOperator
 
impl PartialEq for UnaryOperator
Source§impl PartialOrd for UnaryOperator
 
impl PartialOrd for UnaryOperator
impl Copy for UnaryOperator
impl Eq for UnaryOperator
impl StructuralPartialEq for UnaryOperator
Auto Trait Implementations§
impl Freeze for UnaryOperator
impl RefUnwindSafe for UnaryOperator
impl Send for UnaryOperator
impl Sync for UnaryOperator
impl Unpin for UnaryOperator
impl UnwindSafe for UnaryOperator
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<Q, K> Comparable<K> for Q
 
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.