pub struct GX(_);
Implementations
sourceimpl GX
impl GX
pub const CLEAR: Self = Self(0)
pub const AND: Self = Self(1)
pub const AND_REVERSE: Self = Self(2)
pub const COPY: Self = Self(3)
pub const AND_INVERTED: Self = Self(4)
pub const NOOP: Self = Self(5)
pub const XOR: Self = Self(6)
pub const OR: Self = Self(7)
pub const NOR: Self = Self(8)
pub const EQUIV: Self = Self(9)
pub const INVERT: Self = Self(10)
pub const OR_REVERSE: Self = Self(11)
pub const COPY_INVERTED: Self = Self(12)
pub const OR_INVERTED: Self = Self(13)
pub const NAND: Self = Self(14)
pub const SET: Self = Self(15)
Trait Implementations
sourceimpl Ord for GX
impl Ord for GX
sourceimpl PartialOrd<GX> for GX
impl PartialOrd<GX> for GX
sourcefn partial_cmp(&self, other: &GX) -> Option<Ordering>
fn partial_cmp(&self, other: &GX) -> 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 GX
impl Eq for GX
impl StructuralEq for GX
impl StructuralPartialEq for GX
Auto Trait Implementations
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