pub struct ValidationStats {
pub total: usize,
pub valid: usize,
pub invalid: usize,
pub skipped: usize,
pub dns_failed: usize,
pub http_failed: usize,
pub ssl_failed: usize,
pub success_rate: f64,
pub processing_time_secs: f64,
pub domains_per_sec: f64,
}Available on crate feature
domain-validator-mobile only.Fields§
§total: usize§valid: usize§invalid: usize§skipped: usize§dns_failed: usize§http_failed: usize§ssl_failed: usize§success_rate: f64§processing_time_secs: f64§domains_per_sec: f64Trait Implementations§
Source§impl Clone for ValidationStats
impl Clone for ValidationStats
Source§fn clone(&self) -> ValidationStats
fn clone(&self) -> ValidationStats
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 ValidationStats
impl Debug for ValidationStats
Source§impl<'de> Deserialize<'de> for ValidationStats
impl<'de> Deserialize<'de> for ValidationStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ValidationStats
impl RefUnwindSafe for ValidationStats
impl Send for ValidationStats
impl Sync for ValidationStats
impl Unpin for ValidationStats
impl UnsafeUnpin for ValidationStats
impl UnwindSafe for ValidationStats
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