pub struct LogicOp(/* private fields */);Expand description
Implementations§
Source§impl LogicOp
impl LogicOp
pub const CLEAR: LogicOp
pub const AND: LogicOp
pub const AND_REVERSE: LogicOp
pub const COPY: LogicOp
pub const AND_INVERTED: LogicOp
pub const NO_OP: LogicOp
pub const XOR: LogicOp
pub const OR: LogicOp
pub const NOR: LogicOp
pub const EQUIVALENT: LogicOp
pub const INVERT: LogicOp
pub const OR_REVERSE: LogicOp
pub const COPY_INVERTED: LogicOp
pub const OR_INVERTED: LogicOp
pub const NAND: LogicOp
pub const SET: LogicOp
pub const fn from_raw(value: i32) -> LogicOp
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