pub struct PassThroughResult {
pub account_id: String,
pub total_inflow: f64,
pub total_outflow: f64,
pub transaction_count: usize,
pub activity_duration_hours: i64,
pub pattern: SuspiciousPattern,
}Fields§
§account_id: String§total_inflow: f64§total_outflow: f64§transaction_count: usize§activity_duration_hours: i64§pattern: SuspiciousPatternTrait Implementations§
Source§impl Clone for PassThroughResult
impl Clone for PassThroughResult
Source§fn clone(&self) -> PassThroughResult
fn clone(&self) -> PassThroughResult
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 PassThroughResult
impl Debug for PassThroughResult
Source§impl<'de> Deserialize<'de> for PassThroughResult
impl<'de> Deserialize<'de> for PassThroughResult
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 PassThroughResult
impl RefUnwindSafe for PassThroughResult
impl Send for PassThroughResult
impl Sync for PassThroughResult
impl Unpin for PassThroughResult
impl UnwindSafe for PassThroughResult
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