pub enum DriverRxError {
Discarded,
HardReset,
}Expand description
Receive Error.
Variants§
Discarded
Received message discarded, e.g. due to CRC errors.
HardReset
Hard Reset received before or during reception.
Trait Implementations§
Source§impl Clone for DriverRxError
impl Clone for DriverRxError
Source§fn clone(&self) -> DriverRxError
fn clone(&self) -> DriverRxError
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 DriverRxError
impl Debug for DriverRxError
impl Copy for DriverRxError
Auto Trait Implementations§
impl Freeze for DriverRxError
impl RefUnwindSafe for DriverRxError
impl Send for DriverRxError
impl Sync for DriverRxError
impl Unpin for DriverRxError
impl UnwindSafe for DriverRxError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, U> UnsafeFrom<U> for Twhere
U: Into<T>,
impl<T, U> UnsafeFrom<U> for Twhere
U: Into<T>,
Source§unsafe fn unsafe_from(other: U) -> T
unsafe fn unsafe_from(other: U) -> T
Calls U::into(other).
That is, this conversion is whatever the implementation of Into<T> for U chooses to
do.
Source§impl<T, U> UnsafeInto<U> for Twhere
U: UnsafeFrom<T>,
impl<T, U> UnsafeInto<U> for Twhere
U: UnsafeFrom<T>,
Source§unsafe fn unsafe_into(self) -> U
unsafe fn unsafe_into(self) -> U
Calls U::unsafe_from(self).
That is, this conversion is whatever the implementation of UnsafeFrom<T> for U
chooses to do.