pub struct TransactionLabelFeatures {
pub is_structuring: bool,
pub below_threshold: bool,
pub is_cash: bool,
pub is_international: bool,
pub is_rapid_succession: bool,
pub new_counterparty: bool,
pub round_amount: bool,
pub unusual_timing: bool,
}Expand description
Additional transaction label features.
Fields§
§is_structuring: boolIs this part of a structuring pattern?
below_threshold: boolIs amount below reporting threshold?
is_cash: boolIs this a cash transaction?
is_international: boolIs this an international transaction?
is_rapid_succession: boolRapid succession with other transactions?
new_counterparty: boolIs counterparty new/unknown?
round_amount: boolRound number amount?
unusual_timing: boolTransaction on weekend/holiday?
Trait Implementations§
Source§impl Clone for TransactionLabelFeatures
impl Clone for TransactionLabelFeatures
Source§fn clone(&self) -> TransactionLabelFeatures
fn clone(&self) -> TransactionLabelFeatures
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 TransactionLabelFeatures
impl Debug for TransactionLabelFeatures
Source§impl Default for TransactionLabelFeatures
impl Default for TransactionLabelFeatures
Source§fn default() -> TransactionLabelFeatures
fn default() -> TransactionLabelFeatures
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionLabelFeatures
impl<'de> Deserialize<'de> for TransactionLabelFeatures
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 TransactionLabelFeatures
impl RefUnwindSafe for TransactionLabelFeatures
impl Send for TransactionLabelFeatures
impl Sync for TransactionLabelFeatures
impl Unpin for TransactionLabelFeatures
impl UnwindSafe for TransactionLabelFeatures
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