#[non_exhaustive]pub enum EncodeError<E> {
Encode(E),
ShortMessage(OctetStringError),
}Available on crate feature
encoding only.Expand description
Errors that can occur during encoded message creation.
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.
Encode(E)
ShortMessage(OctetStringError)
Trait Implementations§
Source§impl<E: Debug> Debug for EncodeError<E>
impl<E: Debug> Debug for EncodeError<E>
Source§impl<E> Display for EncodeError<E>where
E: Display,
impl<E> Display for EncodeError<E>where
E: Display,
Source§impl<E> Error for EncodeError<E>
impl<E> Error for EncodeError<E>
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§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl<E> From<Error> for EncodeError<E>
impl<E> From<Error> for EncodeError<E>
Source§fn from(source: OctetStringError) -> Self
fn from(source: OctetStringError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<E> Freeze for EncodeError<E>where
E: Freeze,
impl<E> RefUnwindSafe for EncodeError<E>where
E: RefUnwindSafe,
impl<E> Send for EncodeError<E>where
E: Send,
impl<E> Sync for EncodeError<E>where
E: Sync,
impl<E> Unpin for EncodeError<E>where
E: Unpin,
impl<E> UnwindSafe for EncodeError<E>where
E: UnwindSafe,
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more