Enum trezor_client::transport::error::Error
source · pub enum Error {
Usb(Error),
IO(Error),
DeviceNotFound,
DeviceDisconnected,
UnexpectedChunkSizeFromDevice(usize),
DeviceReadTimeout,
DeviceBadMagic,
DeviceBadSessionId,
DeviceUnexpectedSequenceNumber,
InvalidMessageType(u32),
NoDeviceSerial,
}
Expand description
Trezor error.
Variants§
Usb(Error)
rusb error.
IO(Error)
std::io error.
DeviceNotFound
The device to connect to was not found.
DeviceDisconnected
The device is no longer available.
UnexpectedChunkSizeFromDevice(usize)
The device produced a data chunk of unexpected size.
DeviceReadTimeout
Timeout expired while reading from device.
DeviceBadMagic
The device sent a chunk with a wrong magic value.
DeviceBadSessionId
The device sent a message with a wrong session id.
DeviceUnexpectedSequenceNumber
The device sent an unexpected sequence number.
InvalidMessageType(u32)
Received a non-existing message type from the device.
NoDeviceSerial
Unable to determine device serial number.
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 !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