pub enum Error {
Show 14 variants
Success,
Io,
InvalidParam,
Access,
NoDevice,
NotFound,
Busy,
Timeout,
Overflow,
Pipe,
Interrupted,
NoMem,
NotSupported,
Other,
}
Expand description
Errors returned by the libusb
library.
Variants§
Success
Success (no error).
Io
Input/output error.
InvalidParam
Invalid parameter.
Access
Access denied (insufficient permissions).
NoDevice
No such device (it may have been disconnected).
NotFound
Entity not found.
Busy
Resource busy.
Timeout
Operation timed out.
Overflow
Overflow.
Pipe
Pipe error.
Interrupted
System call interrupted (perhaps due to signal).
NoMem
Insufficient memory.
NotSupported
Operation not supported or unimplemented on this platform.
Other
Other error.
Implementations§
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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