pub struct TryNewCanFrameError { /* private fields */ }
Expand description
The data or ID used to construct a CAN frame was out of bounds.
Trait Implementations§
Source§impl Clone for TryNewCanFrameError
impl Clone for TryNewCanFrameError
Source§fn clone(&self) -> TryNewCanFrameError
fn clone(&self) -> TryNewCanFrameError
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 TryNewCanFrameError
impl Debug for TryNewCanFrameError
Source§impl Display for TryNewCanFrameError
impl Display for TryNewCanFrameError
Source§impl Error for TryNewCanFrameError
impl Error for TryNewCanFrameError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Infallible> for TryNewCanFrameError
impl From<Infallible> for TryNewCanFrameError
Source§fn from(_value: Infallible) -> Self
fn from(_value: Infallible) -> Self
Converts to this type from the input type.
Source§impl From<InvalidId> for TryNewCanFrameError
impl From<InvalidId> for TryNewCanFrameError
Source§impl From<TryIntoCanDataError> for TryNewCanFrameError
impl From<TryIntoCanDataError> for TryNewCanFrameError
Source§fn from(value: TryIntoCanDataError) -> Self
fn from(value: TryIntoCanDataError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TryNewCanFrameError
impl RefUnwindSafe for TryNewCanFrameError
impl Send for TryNewCanFrameError
impl Sync for TryNewCanFrameError
impl Unpin for TryNewCanFrameError
impl UnwindSafe for TryNewCanFrameError
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