pub struct LogicOp(/* private fields */);Expand description
Implementations§
Source§impl LogicOp
impl LogicOp
pub const CLEAR: Self
pub const AND: Self
pub const AND_REVERSE: Self
pub const COPY: Self
pub const AND_INVERTED: Self
pub const NO_OP: Self
pub const XOR: Self
pub const OR: Self
pub const NOR: Self
pub const EQUIVALENT: Self
pub const INVERT: Self
pub const OR_REVERSE: Self
pub const COPY_INVERTED: Self
pub const OR_INVERTED: Self
pub const NAND: Self
pub const SET: Self
pub const fn from_raw(value: i32) -> Self
pub const fn as_raw(self) -> i32
Trait Implementations§
Source§impl Error for LogicOp
impl Error for LogicOp
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl Ord for LogicOp
impl Ord for LogicOp
Source§impl PartialOrd for LogicOp
impl PartialOrd for LogicOp
impl Copy for LogicOp
impl Eq for LogicOp
impl StructuralPartialEq for LogicOp
Auto Trait Implementations§
impl Freeze for LogicOp
impl RefUnwindSafe for LogicOp
impl Send for LogicOp
impl Sync for LogicOp
impl Unpin for LogicOp
impl UnsafeUnpin for LogicOp
impl UnwindSafe for LogicOp
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