#[non_exhaustive]pub enum MultipartError<E> {
Concatenation(E),
ShortMessage(OctetStringError),
MinPartCount {
min: usize,
actual: usize,
},
MaxPartsCount {
max: usize,
actual: usize,
},
}Available on crate feature
concatenation only.Expand description
Errors that can occur during multipart 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.
Trait Implementations§
Source§impl<E: Debug> Debug for MultipartError<E>
impl<E: Debug> Debug for MultipartError<E>
Source§impl<E> Display for MultipartError<E>where
E: Display,
impl<E> Display for MultipartError<E>where
E: Display,
Source§impl<E> Error for MultipartError<E>
impl<E> Error for MultipartError<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 MultipartError<E>
impl<E> From<Error> for MultipartError<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 MultipartError<E>where
E: Freeze,
impl<E> RefUnwindSafe for MultipartError<E>where
E: RefUnwindSafe,
impl<E> Send for MultipartError<E>where
E: Send,
impl<E> Sync for MultipartError<E>where
E: Sync,
impl<E> Unpin for MultipartError<E>where
E: Unpin,
impl<E> UnwindSafe for MultipartError<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