A Rust crate providing an implementation of an RFC-compliant EmailAddress
newtype.
Primarily for validation, the EmailAddress
type is constructed with FromStr::from_str
which will raise any
parsing errors. Prior to constructions the functions is_valid
, is_valid_local_part
, and is_valid_domain
may
also be used to test for validity without constructing an instance.
Currently, it supports all the RFC ASCII and UTF-8 character set rules as well as quoted and unquoted local parts but does not yet support all the productions required for SMTP headers; folding whitespace, comments, etc.
```rust use email_address::*;
assert!(EmailAddress::is_valid("user.name+tag+sorting@example.com"));
asserteq!( EmailAddress::fromstr("Abc.example.com"), Error::MissingSeparator.into() ); ```
Version 0.2.2
Send
and Sync
implementation, and fixed documentation bug
(Sören Meier).Version 0.2.1
From<EmailAddress>
for String
.AsRef<str
for EmailAddress
.local_part
and domain
accessors.Version 0.2.0
to_uri
now supports URI encoding the address as a part of the URI.is_valid_local_part
and is_valid_domain
methods.Version 0.1.0
domain-literal
values, only does surface syntax check.