Enum pico_bytes::UnaryOperation
source · #[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§fn eq(&self, other: &UnaryOperation) -> bool
fn eq(&self, other: &UnaryOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<u8> for UnaryOperation
impl TryFrom<u8> for UnaryOperation
impl Copy for UnaryOperation
impl Eq for UnaryOperation
impl StructuralEq for UnaryOperation
impl StructuralPartialEq for UnaryOperation
Auto Trait Implementations§
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