pub enum UnaryPrefixOp {
Negate,
Plus,
BooleanNot,
BitwiseNot,
PreIncrement,
PreDecrement,
}Variants§
Trait Implementations§
Source§impl Clone for UnaryPrefixOp
impl Clone for UnaryPrefixOp
Source§fn clone(&self) -> UnaryPrefixOp
fn clone(&self) -> UnaryPrefixOp
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 UnaryPrefixOp
impl Debug for UnaryPrefixOp
Source§impl PartialEq for UnaryPrefixOp
impl PartialEq for UnaryPrefixOp
Source§impl Serialize for UnaryPrefixOp
impl Serialize for UnaryPrefixOp
impl Copy for UnaryPrefixOp
impl Eq for UnaryPrefixOp
impl StructuralPartialEq for UnaryPrefixOp
Auto Trait Implementations§
impl Freeze for UnaryPrefixOp
impl RefUnwindSafe for UnaryPrefixOp
impl Send for UnaryPrefixOp
impl Sync for UnaryPrefixOp
impl Unpin for UnaryPrefixOp
impl UnsafeUnpin for UnaryPrefixOp
impl UnwindSafe for UnaryPrefixOp
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