Enum ConfigError
#[non_exhaustive]pub enum ConfigError {
BaudrateNotSupported,
DataParityNotSupported,
ConfigurationNotSupported,
}Available on crate feature
uart only.Expand description
UART configuration error.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
BaudrateNotSupported
The requested baud rate is not supported.
DataParityNotSupported
Data bits and parity combination not supported.
ConfigurationNotSupported
Peripheral-specific error.
Trait Implementations§
§impl Clone for ConfigError
impl Clone for ConfigError
§fn clone(&self) -> ConfigError
fn clone(&self) -> ConfigError
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 more§impl Debug for ConfigError
impl Debug for ConfigError
§impl PartialEq for ConfigError
impl PartialEq for ConfigError
impl Copy for ConfigError
impl Eq for ConfigError
impl StructuralPartialEq for ConfigError
Auto Trait Implementations§
impl Freeze for ConfigError
impl RefUnwindSafe for ConfigError
impl Send for ConfigError
impl Sync for ConfigError
impl Unpin for ConfigError
impl UnwindSafe for ConfigError
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