pub struct BulkValidationResult {
pub stats: ValidationStats,
pub valid_domains: Vec<String>,
pub results: Vec<ValidationResult>,
}Available on crate feature
domain-validator only.Fields§
§stats: ValidationStats§valid_domains: Vec<String>§results: Vec<ValidationResult>Trait Implementations§
Source§impl Clone for BulkValidationResult
impl Clone for BulkValidationResult
Source§fn clone(&self) -> BulkValidationResult
fn clone(&self) -> BulkValidationResult
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 BulkValidationResult
impl Debug for BulkValidationResult
Source§impl<'de> Deserialize<'de> for BulkValidationResult
impl<'de> Deserialize<'de> for BulkValidationResult
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 BulkValidationResult
impl RefUnwindSafe for BulkValidationResult
impl Send for BulkValidationResult
impl Sync for BulkValidationResult
impl Unpin for BulkValidationResult
impl UnsafeUnpin for BulkValidationResult
impl UnwindSafe for BulkValidationResult
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