pub struct TypologyDetection {
pub name: String,
pub transaction_count: i64,
pub case_count: i64,
pub flag_rate: f64,
pub pattern_detected: bool,
}Fields§
§name: String§transaction_count: i64§case_count: i64§flag_rate: f64§pattern_detected: boolTrait Implementations§
Source§impl Clone for TypologyDetection
impl Clone for TypologyDetection
Source§fn clone(&self) -> TypologyDetection
fn clone(&self) -> TypologyDetection
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 TypologyDetection
impl Debug for TypologyDetection
Source§impl Default for TypologyDetection
impl Default for TypologyDetection
Source§fn default() -> TypologyDetection
fn default() -> TypologyDetection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TypologyDetection
impl<'de> Deserialize<'de> for TypologyDetection
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 TypologyDetection
impl RefUnwindSafe for TypologyDetection
impl Send for TypologyDetection
impl Sync for TypologyDetection
impl Unpin for TypologyDetection
impl UnsafeUnpin for TypologyDetection
impl UnwindSafe for TypologyDetection
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