pub struct BankingOutputConfig {
pub directory: String,
pub include_customers: bool,
pub include_accounts: bool,
pub include_transactions: bool,
pub include_counterparties: bool,
pub include_beneficial_ownership: bool,
pub include_transaction_labels: bool,
pub include_entity_labels: bool,
pub include_relationship_labels: bool,
pub include_case_narratives: bool,
pub include_graph: bool,
}Expand description
Banking output configuration.
Fields§
§directory: StringOutput directory (relative to main output)
include_customers: boolInclude customer master data
include_accounts: boolInclude account master data
include_transactions: boolInclude transactions
include_counterparties: boolInclude counterparties
include_beneficial_ownership: boolInclude beneficial ownership
include_transaction_labels: boolInclude transaction labels
include_entity_labels: boolInclude entity labels
include_relationship_labels: boolInclude relationship labels
include_case_narratives: boolInclude case narratives
include_graph: boolExport graph data
Trait Implementations§
Source§impl Clone for BankingOutputConfig
impl Clone for BankingOutputConfig
Source§fn clone(&self) -> BankingOutputConfig
fn clone(&self) -> BankingOutputConfig
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 BankingOutputConfig
impl Debug for BankingOutputConfig
Source§impl Default for BankingOutputConfig
impl Default for BankingOutputConfig
Source§impl<'de> Deserialize<'de> for BankingOutputConfig
impl<'de> Deserialize<'de> for BankingOutputConfig
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 BankingOutputConfig
impl RefUnwindSafe for BankingOutputConfig
impl Send for BankingOutputConfig
impl Sync for BankingOutputConfig
impl Unpin for BankingOutputConfig
impl UnwindSafe for BankingOutputConfig
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