pub struct StructuringResult {
pub account_id: String,
pub transaction_amounts: Vec<f64>,
pub total_amount: f64,
pub pattern: SuspiciousPattern,
pub threshold_avoided: f64,
}Fields§
§account_id: String§transaction_amounts: Vec<f64>§total_amount: f64§pattern: SuspiciousPattern§threshold_avoided: f64Trait Implementations§
Source§impl Clone for StructuringResult
impl Clone for StructuringResult
Source§fn clone(&self) -> StructuringResult
fn clone(&self) -> StructuringResult
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 StructuringResult
impl Debug for StructuringResult
Source§impl<'de> Deserialize<'de> for StructuringResult
impl<'de> Deserialize<'de> for StructuringResult
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 StructuringResult
impl RefUnwindSafe for StructuringResult
impl Send for StructuringResult
impl Sync for StructuringResult
impl Unpin for StructuringResult
impl UnwindSafe for StructuringResult
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