#[repr(u8)]pub enum DetectFourWire {
DETECT_FOUR_WIRE_0 = 0,
DETECT_FOUR_WIRE_1 = 1,
}Variants§
DETECT_FOUR_WIRE_0 = 0
No detect signal
DETECT_FOUR_WIRE_1 = 1
Yes, there is a detect on the touch screen.
Implementations§
Trait Implementations§
Source§impl Clone for DetectFourWire
impl Clone for DetectFourWire
Source§fn clone(&self) -> DetectFourWire
fn clone(&self) -> DetectFourWire
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 DetectFourWire
impl Debug for DetectFourWire
Source§impl From<DetectFourWire> for u8
impl From<DetectFourWire> for u8
Source§fn from(val: DetectFourWire) -> u8
fn from(val: DetectFourWire) -> u8
Converts to this type from the input type.
Source§impl From<u8> for DetectFourWire
impl From<u8> for DetectFourWire
Source§fn from(val: u8) -> DetectFourWire
fn from(val: u8) -> DetectFourWire
Converts to this type from the input type.
Source§impl Ord for DetectFourWire
impl Ord for DetectFourWire
Source§fn cmp(&self, other: &DetectFourWire) -> Ordering
fn cmp(&self, other: &DetectFourWire) -> 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 DetectFourWire
impl PartialEq for DetectFourWire
Source§impl PartialOrd for DetectFourWire
impl PartialOrd for DetectFourWire
impl Copy for DetectFourWire
impl Eq for DetectFourWire
impl StructuralPartialEq for DetectFourWire
Auto Trait Implementations§
impl Freeze for DetectFourWire
impl RefUnwindSafe for DetectFourWire
impl Send for DetectFourWire
impl Sync for DetectFourWire
impl Unpin for DetectFourWire
impl UnwindSafe for DetectFourWire
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