pub enum UnaryOpType {
Plus,
Minus,
BitNot,
Not,
}Variants§
Trait Implementations§
Source§impl Clone for UnaryOpType
impl Clone for UnaryOpType
Source§fn clone(&self) -> UnaryOpType
fn clone(&self) -> UnaryOpType
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 UnaryOpType
impl Debug for UnaryOpType
Source§impl Display for UnaryOpType
impl Display for UnaryOpType
Source§impl PartialEq for UnaryOpType
impl PartialEq for UnaryOpType
Source§impl Trace for UnaryOpType
impl Trace for UnaryOpType
Source§fn finalize_glue(&self)
fn finalize_glue(&self)
Runs Finalize::finalize() on this object and all
contained subobjects
impl Copy for UnaryOpType
impl StructuralPartialEq for UnaryOpType
Auto Trait Implementations§
impl Freeze for UnaryOpType
impl RefUnwindSafe for UnaryOpType
impl Send for UnaryOpType
impl Sync for UnaryOpType
impl Unpin for UnaryOpType
impl UnwindSafe for UnaryOpType
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