pub enum Resolve16550Error {
ResolveBackend(ResolveError),
Configuration(ConfigurationError),
}
Expand description
An error resolving a Serial16550DeviceHandle
.
Variants§
ResolveBackend(ResolveError)
Configuration(ConfigurationError)
Trait Implementations§
Source§impl Debug for Resolve16550Error
impl Debug for Resolve16550Error
Source§impl Display for Resolve16550Error
impl Display for Resolve16550Error
Source§impl Error for Resolve16550Error
impl Error for Resolve16550Error
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()
Auto Trait Implementations§
impl Freeze for Resolve16550Error
impl !RefUnwindSafe for Resolve16550Error
impl Send for Resolve16550Error
impl Sync for Resolve16550Error
impl Unpin for Resolve16550Error
impl !UnwindSafe for Resolve16550Error
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