#[repr(u8)]pub enum IntCtrlEntVal {
ENT_VAL_CLEAR = 0,
ENT_VAL_ON = 1,
}Variants§
ENT_VAL_CLEAR = 0
Same behavior as bit 0 of this register.
ENT_VAL_ON = 1
Same behavior as bit 0 of this register.
Implementations§
Source§impl IntCtrlEntVal
impl IntCtrlEntVal
Trait Implementations§
Source§impl Clone for IntCtrlEntVal
impl Clone for IntCtrlEntVal
Source§fn clone(&self) -> IntCtrlEntVal
fn clone(&self) -> IntCtrlEntVal
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntCtrlEntVal
impl Debug for IntCtrlEntVal
Source§impl From<IntCtrlEntVal> for u8
impl From<IntCtrlEntVal> for u8
Source§fn from(val: IntCtrlEntVal) -> u8
fn from(val: IntCtrlEntVal) -> u8
Converts to this type from the input type.
Source§impl From<u8> for IntCtrlEntVal
impl From<u8> for IntCtrlEntVal
Source§fn from(val: u8) -> IntCtrlEntVal
fn from(val: u8) -> IntCtrlEntVal
Converts to this type from the input type.
Source§impl Ord for IntCtrlEntVal
impl Ord for IntCtrlEntVal
Source§fn cmp(&self, other: &IntCtrlEntVal) -> Ordering
fn cmp(&self, other: &IntCtrlEntVal) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IntCtrlEntVal
impl PartialEq for IntCtrlEntVal
Source§impl PartialOrd for IntCtrlEntVal
impl PartialOrd for IntCtrlEntVal
impl Copy for IntCtrlEntVal
impl Eq for IntCtrlEntVal
impl StructuralPartialEq for IntCtrlEntVal
Auto Trait Implementations§
impl Freeze for IntCtrlEntVal
impl RefUnwindSafe for IntCtrlEntVal
impl Send for IntCtrlEntVal
impl Sync for IntCtrlEntVal
impl Unpin for IntCtrlEntVal
impl UnwindSafe for IntCtrlEntVal
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