Enum validators::email::EmailError [−][src]
pub enum EmailError {
IncorrectLocalPart,
IncorrectDomainPart(DomainError),
UTF8Error(Utf8Error),
}Variants
IncorrectLocalPartIncorrectDomainPart(DomainError)UTF8Error(Utf8Error)
Trait Implementations
impl Debug for EmailError[src]
impl Debug for EmailErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for EmailError[src]
impl PartialEq for EmailErrorfn eq(&self, other: &EmailError) -> bool[src]
fn eq(&self, other: &EmailError) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &EmailError) -> bool[src]
fn ne(&self, other: &EmailError) -> boolThis method tests for !=.
impl Clone for EmailError[src]
impl Clone for EmailErrorfn clone(&self) -> EmailError[src]
fn clone(&self) -> EmailErrorReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for EmailError
impl Send for EmailErrorimpl Sync for EmailError
impl Sync for EmailError