pub struct AccountContext {
pub account_code: String,
pub is_high_risk: bool,
pub is_reconciliation: bool,
pub is_revenue: bool,
pub is_intercompany: bool,
}Expand description
Context information about an account.
Fields§
§account_code: StringAccount code.
is_high_risk: boolWhether account is high-risk.
is_reconciliation: boolWhether account is a reconciliation account.
is_revenue: boolWhether account is a revenue account.
is_intercompany: boolWhether account is an intercompany account.
Trait Implementations§
Source§impl Clone for AccountContext
impl Clone for AccountContext
Source§fn clone(&self) -> AccountContext
fn clone(&self) -> AccountContext
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 AccountContext
impl Debug for AccountContext
Source§impl Default for AccountContext
impl Default for AccountContext
Source§fn default() -> AccountContext
fn default() -> AccountContext
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AccountContext
impl RefUnwindSafe for AccountContext
impl Send for AccountContext
impl Sync for AccountContext
impl Unpin for AccountContext
impl UnwindSafe for AccountContext
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