#[repr(u8)]pub enum UnaryOperation {
Neg = 0,
}
Variants§
Neg = 0
Trait Implementations§
Source§impl Clone for UnaryOperation
impl Clone for UnaryOperation
Source§fn clone(&self) -> UnaryOperation
fn clone(&self) -> UnaryOperation
Returns a copy 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 UnaryOperation
impl Debug for UnaryOperation
Source§impl From<UnaryOperation> for u8
impl From<UnaryOperation> for u8
Source§fn from(val: UnaryOperation) -> Self
fn from(val: UnaryOperation) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UnaryOperation
impl PartialEq for UnaryOperation
Source§impl TryFrom<u8> for UnaryOperation
impl TryFrom<u8> for UnaryOperation
impl Copy for UnaryOperation
impl Eq for UnaryOperation
impl StructuralPartialEq for UnaryOperation
Auto Trait Implementations§
impl Freeze for UnaryOperation
impl RefUnwindSafe for UnaryOperation
impl Send for UnaryOperation
impl Sync for UnaryOperation
impl Unpin for UnaryOperation
impl UnwindSafe for UnaryOperation
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