pub struct NarrativeMetadata {
pub typology: String,
pub sophistication: String,
pub stages: Vec<String>,
pub start_date: String,
pub end_date: String,
pub account_count: usize,
pub detectability: f64,
}Expand description
Narrative metadata.
Fields§
§typology: StringTypology
sophistication: StringSophistication level
stages: Vec<String>Laundering stages
start_date: StringStart date
end_date: StringEnd date
account_count: usizeAccount count
detectability: f64Detectability score
Trait Implementations§
Source§impl Clone for NarrativeMetadata
impl Clone for NarrativeMetadata
Source§fn clone(&self) -> NarrativeMetadata
fn clone(&self) -> NarrativeMetadata
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 NarrativeMetadata
impl Debug for NarrativeMetadata
Source§impl<'de> Deserialize<'de> for NarrativeMetadata
impl<'de> Deserialize<'de> for NarrativeMetadata
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 NarrativeMetadata
impl RefUnwindSafe for NarrativeMetadata
impl Send for NarrativeMetadata
impl Sync for NarrativeMetadata
impl Unpin for NarrativeMetadata
impl UnwindSafe for NarrativeMetadata
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