pub enum DkimVersion<'hdr> {
One,
Unknown(&'hdr str),
}Expand description
DKIM Version
Variants§
Trait Implementations§
Source§impl<'hdr> Clone for DkimVersion<'hdr>
impl<'hdr> Clone for DkimVersion<'hdr>
Source§fn clone(&self) -> DkimVersion<'hdr>
fn clone(&self) -> DkimVersion<'hdr>
Returns a duplicate 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<'hdr> Debug for DkimVersion<'hdr>
impl<'hdr> Debug for DkimVersion<'hdr>
Source§impl<'hdr> PartialEq for DkimVersion<'hdr>
impl<'hdr> PartialEq for DkimVersion<'hdr>
Source§impl<'hdr> TryFrom<&'hdr str> for DkimVersion<'hdr>
impl<'hdr> TryFrom<&'hdr str> for DkimVersion<'hdr>
impl<'hdr> StructuralPartialEq for DkimVersion<'hdr>
Auto Trait Implementations§
impl<'hdr> Freeze for DkimVersion<'hdr>
impl<'hdr> RefUnwindSafe for DkimVersion<'hdr>
impl<'hdr> Send for DkimVersion<'hdr>
impl<'hdr> Sync for DkimVersion<'hdr>
impl<'hdr> Unpin for DkimVersion<'hdr>
impl<'hdr> UnwindSafe for DkimVersion<'hdr>
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