#[repr(u8)]pub enum TransceiverErrorKind {
Unspecified = 0,
NoWire = 1,
ShortToBattery = 2,
ShortToPower = 3,
ShortToGround = 4,
ShortLowToHigh = 5,
}Expand description
Transceiver error type.
Variants§
Unspecified = 0
Unspecified error.
NoWire = 1
Not connected.
ShortToBattery = 2
Short to battery.
ShortToPower = 3
Short to power.
ShortToGround = 4
Short to ground.
ShortLowToHigh = 5
Short low to high.
Trait Implementations§
Source§impl Clone for TransceiverErrorKind
impl Clone for TransceiverErrorKind
Source§fn clone(&self) -> TransceiverErrorKind
fn clone(&self) -> TransceiverErrorKind
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 TransceiverErrorKind
impl Debug for TransceiverErrorKind
Source§impl PartialEq for TransceiverErrorKind
impl PartialEq for TransceiverErrorKind
impl Copy for TransceiverErrorKind
impl Eq for TransceiverErrorKind
impl StructuralPartialEq for TransceiverErrorKind
Auto Trait Implementations§
impl Freeze for TransceiverErrorKind
impl RefUnwindSafe for TransceiverErrorKind
impl Send for TransceiverErrorKind
impl Sync for TransceiverErrorKind
impl Unpin for TransceiverErrorKind
impl UnsafeUnpin for TransceiverErrorKind
impl UnwindSafe for TransceiverErrorKind
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