pub enum PrefixUnaryOperator {
Negative,
Bang,
Not,
}
Variants§
Trait Implementations§
Source§impl Clone for PrefixUnaryOperator
impl Clone for PrefixUnaryOperator
Source§fn clone(&self) -> PrefixUnaryOperator
fn clone(&self) -> PrefixUnaryOperator
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 PartialEq for PrefixUnaryOperator
impl PartialEq for PrefixUnaryOperator
impl StructuralPartialEq for PrefixUnaryOperator
Auto Trait Implementations§
impl Freeze for PrefixUnaryOperator
impl RefUnwindSafe for PrefixUnaryOperator
impl Send for PrefixUnaryOperator
impl Sync for PrefixUnaryOperator
impl Unpin for PrefixUnaryOperator
impl UnwindSafe for PrefixUnaryOperator
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