pub struct SanctionsMatch {
pub matched_name: String,
pub list: SanctionsList,
pub match_type: MatchType,
pub confidence: f32,
pub entry_id: String,
pub program: Option<String>,
pub country: Option<String>,
}Expand description
Individual sanctions match
Fields§
§matched_name: String§list: SanctionsList§match_type: MatchType§confidence: f32§entry_id: String§program: Option<String>§country: Option<String>Trait Implementations§
Source§impl Clone for SanctionsMatch
impl Clone for SanctionsMatch
Source§fn clone(&self) -> SanctionsMatch
fn clone(&self) -> SanctionsMatch
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 SanctionsMatch
impl Debug for SanctionsMatch
Source§impl<'de> Deserialize<'de> for SanctionsMatch
impl<'de> Deserialize<'de> for SanctionsMatch
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 SanctionsMatch
impl RefUnwindSafe for SanctionsMatch
impl Send for SanctionsMatch
impl Sync for SanctionsMatch
impl Unpin for SanctionsMatch
impl UnwindSafe for SanctionsMatch
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