pub struct TranslatedTrialBalanceLine {
pub account_code: String,
pub account_description: Option<String>,
pub account_type: TranslationAccountType,
pub local_debit: Decimal,
pub local_credit: Decimal,
pub rate_used: Decimal,
pub rate_type: RateType,
pub group_debit: Decimal,
pub group_credit: Decimal,
}Expand description
A line in a translated trial balance.
Fields§
§account_code: StringAccount code.
account_description: Option<String>Account description.
account_type: TranslationAccountTypeAccount type for translation.
local_debit: DecimalDebit balance in local currency.
local_credit: DecimalCredit balance in local currency.
rate_used: DecimalExchange rate used.
rate_type: RateTypeRate type used.
group_debit: DecimalDebit balance in group currency.
group_credit: DecimalCredit balance in group currency.
Implementations§
Trait Implementations§
Source§impl Clone for TranslatedTrialBalanceLine
impl Clone for TranslatedTrialBalanceLine
Source§fn clone(&self) -> TranslatedTrialBalanceLine
fn clone(&self) -> TranslatedTrialBalanceLine
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 moreAuto Trait Implementations§
impl Freeze for TranslatedTrialBalanceLine
impl RefUnwindSafe for TranslatedTrialBalanceLine
impl Send for TranslatedTrialBalanceLine
impl Sync for TranslatedTrialBalanceLine
impl Unpin for TranslatedTrialBalanceLine
impl UnwindSafe for TranslatedTrialBalanceLine
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