#[non_exhaustive]pub enum U3vError {
Usb(String),
Protocol(String),
Timeout,
GenCp(GenCpError),
Status {
status: StatusCode,
},
Descriptor(String),
}Expand description
Errors produced by the USB3 Vision transport layer.
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.
Usb(String)
Low-level USB I/O error.
Protocol(String)
Wire-format or protocol violation.
Timeout
A bulk transfer or control transaction timed out.
GenCp(GenCpError)
GenCP-level decode error.
Status
Device returned a non-success status code.
Fields
§
status: StatusCodeDescriptor(String)
USB descriptor parsing failed.
Trait Implementations§
Source§impl Error for U3vError
impl Error for U3vError
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 U3vError
impl !RefUnwindSafe for U3vError
impl Send for U3vError
impl Sync for U3vError
impl Unpin for U3vError
impl UnsafeUnpin for U3vError
impl !UnwindSafe for U3vError
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