pub enum SpfVersion {
V1,
}Expand description
SPF record version marker.
Variants§
V1
SPF version 1.
Implementations§
Trait Implementations§
Source§impl Clone for SpfVersion
impl Clone for SpfVersion
Source§fn clone(&self) -> SpfVersion
fn clone(&self) -> SpfVersion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SpfVersion
impl Debug for SpfVersion
Source§impl Default for SpfVersion
impl Default for SpfVersion
Source§fn default() -> SpfVersion
fn default() -> SpfVersion
Returns the “default value” for a type. Read more
Source§impl Display for SpfVersion
impl Display for SpfVersion
Source§impl FromStr for SpfVersion
impl FromStr for SpfVersion
Source§impl Hash for SpfVersion
impl Hash for SpfVersion
Source§impl Ord for SpfVersion
impl Ord for SpfVersion
Source§fn cmp(&self, other: &SpfVersion) -> Ordering
fn cmp(&self, other: &SpfVersion) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SpfVersion
impl PartialEq for SpfVersion
Source§fn eq(&self, other: &SpfVersion) -> bool
fn eq(&self, other: &SpfVersion) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SpfVersion
impl PartialOrd for SpfVersion
impl Copy for SpfVersion
impl Eq for SpfVersion
impl StructuralPartialEq for SpfVersion
Auto Trait Implementations§
impl Freeze for SpfVersion
impl RefUnwindSafe for SpfVersion
impl Send for SpfVersion
impl Sync for SpfVersion
impl Unpin for SpfVersion
impl UnsafeUnpin for SpfVersion
impl UnwindSafe for SpfVersion
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