#[non_exhaustive]pub enum UnOper {
Not,
}
Expand description
Unary operators.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Not
Trait Implementations§
impl Copy for UnOper
impl Eq for UnOper
impl StructuralPartialEq for UnOper
Auto Trait Implementations§
impl Freeze for UnOper
impl RefUnwindSafe for UnOper
impl Send for UnOper
impl Sync for UnOper
impl Unpin for UnOper
impl UnwindSafe for UnOper
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