pub struct DomainValidationStats {
pub total_references: usize,
pub valid_references: usize,
pub broken_references: usize,
pub external_references: usize,
pub references_by_type: HashMap<ReferenceType, usize>,
}Expand description
Domain validation statistics
Fields§
§total_references: usizeTotal references processed
valid_references: usizeValid references
broken_references: usizeInvalid/broken references
external_references: usizeExternal references (not validated)
references_by_type: HashMap<ReferenceType, usize>References by type
Trait Implementations§
Source§impl Debug for DomainValidationStats
impl Debug for DomainValidationStats
Source§impl Default for DomainValidationStats
impl Default for DomainValidationStats
Source§fn default() -> DomainValidationStats
fn default() -> DomainValidationStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DomainValidationStats
impl RefUnwindSafe for DomainValidationStats
impl Send for DomainValidationStats
impl Sync for DomainValidationStats
impl Unpin for DomainValidationStats
impl UnwindSafe for DomainValidationStats
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more