pub enum ConfigurationError {
BitTiming(BitTimingError),
InvalidTimeStampPrescaler,
}Expand description
Errors that may occur during configuration
Variants§
BitTiming(BitTimingError)
Problems with the bit timing configuration
InvalidTimeStampPrescaler
Time stamp prescaler value is not in the range [1, 16]
Trait Implementations§
Source§impl Debug for ConfigurationError
impl Debug for ConfigurationError
Source§impl From<BitTimingError> for ConfigurationError
impl From<BitTimingError> for ConfigurationError
Source§fn from(value: BitTimingError) -> Self
fn from(value: BitTimingError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConfigurationError
impl RefUnwindSafe for ConfigurationError
impl Send for ConfigurationError
impl Sync for ConfigurationError
impl Unpin for ConfigurationError
impl UnwindSafe for ConfigurationError
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