#[non_exhaustive]pub enum AddressBackendError {
InputContainsRawNewlines,
#[non_exhaustive] InputTooLong {
len: usize,
max: usize,
},
HeaderParse,
MissingAddress,
MissingAddrSpec,
InvalidAddrSpec {
input: String,
source: EmailAddressParseError,
},
GroupMemberMissingAddrSpec {
index: usize,
},
InvalidGroupMemberAddrSpec {
index: usize,
input: String,
source: EmailAddressParseError,
},
GroupMissingName,
}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.
InputContainsRawNewlines
#[non_exhaustive]InputTooLong
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
HeaderParse
MissingAddress
MissingAddrSpec
InvalidAddrSpec
GroupMemberMissingAddrSpec
InvalidGroupMemberAddrSpec
GroupMissingName
Trait Implementations§
Source§impl Debug for AddressBackendError
impl Debug for AddressBackendError
Source§impl Display for AddressBackendError
impl Display for AddressBackendError
Source§impl Error for AddressBackendError
impl Error for AddressBackendError
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()
Auto Trait Implementations§
impl Freeze for AddressBackendError
impl RefUnwindSafe for AddressBackendError
impl Send for AddressBackendError
impl Sync for AddressBackendError
impl Unpin for AddressBackendError
impl UnsafeUnpin for AddressBackendError
impl UnwindSafe for AddressBackendError
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