#[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,
}Expand description
Low-level failures reported by the address parsing backend.
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
The input contains a raw carriage return or line feed.
#[non_exhaustive]InputTooLong
The input exceeds MAX_ADDRESS_INPUT_BYTES.
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
The backend could not parse the synthetic address header.
MissingAddress
The parsed header did not contain address data.
MissingAddrSpec
A mailbox did not contain an addr-spec.
InvalidAddrSpec
A mailbox contained an invalid addr-spec.
Fields
§
source: EmailAddressParseErrorUnderlying email-address validation error.
GroupMemberMissingAddrSpec
A group member did not contain an addr-spec.
InvalidGroupMemberAddrSpec
A group member contained an invalid addr-spec.
Fields
§
source: EmailAddressParseErrorUnderlying email-address validation error.
GroupMissingName
A parsed group did not contain a name.
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