pub struct SPFRecord {
pub record_type: DnsRecordType,
pub name: String,
pub content: String,
pub ttl: u32,
}Expand description
To create a SPF Record
used to indicate to mail exchanges which hosts are authorized to send mail for a domain
Fields§
§record_type: DnsRecordType§name: String§content: String§ttl: u32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SPFRecord
impl RefUnwindSafe for SPFRecord
impl Send for SPFRecord
impl Sync for SPFRecord
impl Unpin for SPFRecord
impl UnwindSafe for SPFRecord
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