pub struct VerificationSource {
pub source_type: VerificationSourceType,
pub meta: Value,
pub match_result: Option<MatchResult>,
pub verification: Option<NameVerification>,
}Expand description
A single verification source result
Fields§
§source_type: VerificationSourceTypeType of verification source
meta: ValueSource-specific metadata
match_result: Option<MatchResult>Match result (only present if matched)
verification: Option<NameVerification>Boolean flags indicating which name components matched
Trait Implementations§
Source§impl Clone for VerificationSource
impl Clone for VerificationSource
Source§fn clone(&self) -> VerificationSource
fn clone(&self) -> VerificationSource
Returns a duplicate of the value. Read more
1.0.0 · 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 VerificationSource
impl Debug for VerificationSource
Source§impl<'de> Deserialize<'de> for VerificationSource
impl<'de> Deserialize<'de> for VerificationSource
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
Source§impl PartialEq for VerificationSource
impl PartialEq for VerificationSource
Source§impl Serialize for VerificationSource
impl Serialize for VerificationSource
impl Eq for VerificationSource
impl StructuralPartialEq for VerificationSource
Auto Trait Implementations§
impl Freeze for VerificationSource
impl RefUnwindSafe for VerificationSource
impl Send for VerificationSource
impl Sync for VerificationSource
impl Unpin for VerificationSource
impl UnwindSafe for VerificationSource
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