pub struct FactRow {
pub je_id: String,
pub line_number: u32,
pub amount: String,
pub drcr_key: u32,
pub account_key: u32,
pub source_key: u32,
pub preparer_key: u32,
pub company_key: u32,
pub currency_key: u32,
pub doc_type_key: u32,
pub date_key: u32,
}Expand description
A single fact row: one journal-entry line with its dimension keys.
Fields§
§je_id: String§line_number: u32§amount: StringSigned amount (debit positive, credit negative), as a string.
drcr_key: u32§account_key: u32§source_key: u32§preparer_key: u32§company_key: u32§currency_key: u32§doc_type_key: u32§date_key: u32Trait Implementations§
impl StructuralPartialEq for FactRow
Auto Trait Implementations§
impl Freeze for FactRow
impl RefUnwindSafe for FactRow
impl Send for FactRow
impl Sync for FactRow
impl Unpin for FactRow
impl UnsafeUnpin for FactRow
impl UnwindSafe for FactRow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.