#[non_exhaustive]pub enum TransitError {
Crypto,
Nonce(Box<[u8]>, Box<[u8]>),
IO(Error),
}Expand description
An error occurred during transit
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.
Crypto
Cryptography error. This is probably an implementation bug, but may also be caused by an attack
Nonce(Box<[u8]>, Box<[u8]>)
Wrong nonce received, got {:x?} but expected {:x?}. This is probably an implementation bug, but may also be caused by an attack
IO(Error)
I/O error
Trait Implementations§
Source§impl Debug for TransitError
impl Debug for TransitError
Source§impl Display for TransitError
impl Display for TransitError
Source§impl Error for TransitError
impl Error for TransitError
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()
Source§impl From<()> for TransitError
impl From<()> for TransitError
Source§impl From<Error> for TransitError
impl From<Error> for TransitError
Source§impl From<TransitError> for ForwardingError
impl From<TransitError> for ForwardingError
Source§fn from(source: TransitError) -> Self
fn from(source: TransitError) -> Self
Converts to this type from the input type.
Source§impl From<TransitError> for TransferError
impl From<TransitError> for TransferError
Source§fn from(source: TransitError) -> Self
fn from(source: TransitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransitError
impl !RefUnwindSafe for TransitError
impl Send for TransitError
impl Sync for TransitError
impl Unpin for TransitError
impl !UnwindSafe for TransitError
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