#[repr(transparent)]pub struct LogicOp(_);Expand description
Implementations
sourceimpl LogicOp
impl LogicOp
pub const CLEAR: LogicOp = Self(0)
pub const AND: LogicOp = Self(1)
pub const AND_REVERSE: LogicOp = Self(2)
pub const COPY: LogicOp = Self(3)
pub const AND_INVERTED: LogicOp = Self(4)
pub const NO_OP: LogicOp = Self(5)
pub const XOR: LogicOp = Self(6)
pub const OR: LogicOp = Self(7)
pub const NOR: LogicOp = Self(8)
pub const EQUIVALENT: LogicOp = Self(9)
pub const INVERT: LogicOp = Self(10)
pub const OR_REVERSE: LogicOp = Self(11)
pub const COPY_INVERTED: LogicOp = Self(12)
pub const OR_INVERTED: LogicOp = Self(13)
pub const NAND: LogicOp = Self(14)
pub const SET: LogicOp = Self(15)
Trait Implementations
sourceimpl Ord for LogicOp
impl Ord for LogicOp
sourceimpl PartialOrd<LogicOp> for LogicOp
impl PartialOrd<LogicOp> for LogicOp
sourcefn partial_cmp(&self, other: &LogicOp) -> Option<Ordering>
fn partial_cmp(&self, other: &LogicOp) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for LogicOp
impl Eq for LogicOp
impl StructuralEq for LogicOp
impl StructuralPartialEq for LogicOp
Auto Trait Implementations
impl RefUnwindSafe for LogicOp
impl Send for LogicOp
impl Sync for LogicOp
impl Unpin for LogicOp
impl UnwindSafe for LogicOp
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more