pub enum DriverTxError {
Discarded,
HardReset,
}
Expand description
Transmit Error.
Variants§
Discarded
Concurrent receive in progress or excessive noise on the line.
HardReset
Hard Reset received before or during transmission.
Trait Implementations§
Source§impl Clone for DriverTxError
impl Clone for DriverTxError
Source§fn clone(&self) -> DriverTxError
fn clone(&self) -> DriverTxError
Returns a copy 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 DriverTxError
impl Debug for DriverTxError
impl Copy for DriverTxError
Auto Trait Implementations§
impl Freeze for DriverTxError
impl RefUnwindSafe for DriverTxError
impl Send for DriverTxError
impl Sync for DriverTxError
impl Unpin for DriverTxError
impl UnwindSafe for DriverTxError
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