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