pub struct SmtpScannerOptions {
pub host: String,
pub port: u16,
pub timeout_ms: u64,
pub check_relay: bool,
pub check_vrfy: bool,
}Fields§
§host: String§port: u16§timeout_ms: u64§check_relay: bool§check_vrfy: boolImplementations§
Trait Implementations§
Source§impl Clone for SmtpScannerOptions
impl Clone for SmtpScannerOptions
Source§fn clone(&self) -> SmtpScannerOptions
fn clone(&self) -> SmtpScannerOptions
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 SmtpScannerOptions
impl Debug for SmtpScannerOptions
Source§impl Default for SmtpScannerOptions
impl Default for SmtpScannerOptions
Source§fn default() -> SmtpScannerOptions
fn default() -> SmtpScannerOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SmtpScannerOptions
impl RefUnwindSafe for SmtpScannerOptions
impl Send for SmtpScannerOptions
impl Sync for SmtpScannerOptions
impl Unpin for SmtpScannerOptions
impl UnsafeUnpin for SmtpScannerOptions
impl UnwindSafe for SmtpScannerOptions
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