pub struct ComplianceResult {
pub aml: Option<Vec<ComplianceScreeningResult>>,
pub tr: Option<Vec<ComplianceScreeningResult>>,
pub aml_list: Option<Vec<ComplianceScreeningResult>>,
pub status: Option<Status>,
pub aml_registration: Option<Vec<AmlRegistrationResult>>,
}
Expand description
ComplianceResult : The result of the Compliance AML/Travel Rule screening.
Fields§
§aml: Option<Vec<ComplianceScreeningResult>>
The end result of the AML screening.
tr: Option<Vec<ComplianceScreeningResult>>
The result of the Travel Rule screening.
aml_list: Option<Vec<ComplianceScreeningResult>>
The list of all results of the AML screening.
status: Option<Status>
Status of compliance result screening.
aml_registration: Option<Vec<AmlRegistrationResult>>
The results of the AML address registration.
Implementations§
Source§impl ComplianceResult
impl ComplianceResult
Sourcepub fn new() -> ComplianceResult
pub fn new() -> ComplianceResult
The result of the Compliance AML/Travel Rule screening.
Trait Implementations§
Source§impl Clone for ComplianceResult
impl Clone for ComplianceResult
Source§fn clone(&self) -> ComplianceResult
fn clone(&self) -> ComplianceResult
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 ComplianceResult
impl Debug for ComplianceResult
Source§impl Default for ComplianceResult
impl Default for ComplianceResult
Source§fn default() -> ComplianceResult
fn default() -> ComplianceResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ComplianceResult
impl<'de> Deserialize<'de> for ComplianceResult
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 ComplianceResult
impl PartialEq for ComplianceResult
Source§impl Serialize for ComplianceResult
impl Serialize for ComplianceResult
impl StructuralPartialEq for ComplianceResult
Auto Trait Implementations§
impl Freeze for ComplianceResult
impl RefUnwindSafe for ComplianceResult
impl Send for ComplianceResult
impl Sync for ComplianceResult
impl Unpin for ComplianceResult
impl UnwindSafe for ComplianceResult
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