pub enum RecipientIDError {
InvalidLength(TryFromSliceError),
}Variants§
InvalidLength(TryFromSliceError)
Trait Implementations§
Source§impl Debug for RecipientIDError
impl Debug for RecipientIDError
Source§impl Display for RecipientIDError
impl Display for RecipientIDError
Source§impl Error for RecipientIDError
impl Error for RecipientIDError
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<TryFromSliceError> for RecipientIDError
impl From<TryFromSliceError> for RecipientIDError
Source§fn from(source: TryFromSliceError) -> Self
fn from(source: TryFromSliceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RecipientIDError
impl RefUnwindSafe for RecipientIDError
impl Send for RecipientIDError
impl Sync for RecipientIDError
impl Unpin for RecipientIDError
impl UnwindSafe for RecipientIDError
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