pub struct MailQsSpec;
Expand description
A Quoted String specification in context of Mail (rfc5322)
This implementation of MailQsSpec does not include support for the obsolete parts of the grammar as it’s meant for generation/encoding and no obsolete parts should be generated at all (Through a parser would have to be able to parse them for compatibility reasons).
Trait Implementations§
Source§impl Clone for MailQsSpec
impl Clone for MailQsSpec
Source§fn clone(&self) -> MailQsSpec
fn clone(&self) -> MailQsSpec
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MailQsSpec
impl Debug for MailQsSpec
Source§impl Default for MailQsSpec
impl Default for MailQsSpec
Source§fn default() -> MailQsSpec
fn default() -> MailQsSpec
Returns the “default value” for a type. Read more
Source§impl GeneralQSSpec for MailQsSpec
impl GeneralQSSpec for MailQsSpec
type Quoting = NormalQuoting
type Parsing = MimeParsing
impl Copy for MailQsSpec
Auto Trait Implementations§
impl Freeze for MailQsSpec
impl RefUnwindSafe for MailQsSpec
impl Send for MailQsSpec
impl Sync for MailQsSpec
impl Unpin for MailQsSpec
impl UnwindSafe for MailQsSpec
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