pub enum ExpressionPrefixOpcode {
Sub,
BoolNot,
Complement,
}
Variants§
Trait Implementations§
Source§impl Clone for ExpressionPrefixOpcode
impl Clone for ExpressionPrefixOpcode
Source§fn clone(&self) -> ExpressionPrefixOpcode
fn clone(&self) -> ExpressionPrefixOpcode
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl PartialEq for ExpressionPrefixOpcode
impl PartialEq for ExpressionPrefixOpcode
Source§fn eq(&self, other: &ExpressionPrefixOpcode) -> bool
fn eq(&self, other: &ExpressionPrefixOpcode) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for ExpressionPrefixOpcode
impl StructuralPartialEq for ExpressionPrefixOpcode
Auto Trait Implementations§
impl Freeze for ExpressionPrefixOpcode
impl RefUnwindSafe for ExpressionPrefixOpcode
impl Send for ExpressionPrefixOpcode
impl Sync for ExpressionPrefixOpcode
impl Unpin for ExpressionPrefixOpcode
impl UnwindSafe for ExpressionPrefixOpcode
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