pub struct InvalidInputError { /* private fields */ }Expand description
Caller-supplied input did not satisfy SMTP grammar.
The error carries a static reason string and never echoes the offending input, which would risk leaking message content or credentials into logs.
Implementations§
Trait Implementations§
Source§impl Debug for InvalidInputError
impl Debug for InvalidInputError
Source§impl Display for InvalidInputError
impl Display for InvalidInputError
Source§impl Error for InvalidInputError
impl Error for InvalidInputError
1.30.0 · 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<InvalidInputError> for SmtpError
impl From<InvalidInputError> for SmtpError
Source§fn from(value: InvalidInputError) -> Self
fn from(value: InvalidInputError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InvalidInputError
impl RefUnwindSafe for InvalidInputError
impl Send for InvalidInputError
impl Sync for InvalidInputError
impl Unpin for InvalidInputError
impl UnsafeUnpin for InvalidInputError
impl UnwindSafe for InvalidInputError
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