pub struct SPFResult {
pub domain_used: String,
pub value: String,
}
Expand description
Since the SPF crate we are using (visaspf) doesn’t expose a result struct with the domain that it used, we’ll use our own.
Fields§
§domain_used: String
§value: String
Auto Trait Implementations§
impl Freeze for SPFResult
impl RefUnwindSafe for SPFResult
impl Send for SPFResult
impl Sync for SPFResult
impl Unpin for SPFResult
impl UnwindSafe for SPFResult
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