pub struct EclSnapshot {
pub ecl_models: Vec<EclModel>,
pub provision_movements: Vec<EclProvisionMovement>,
pub journal_entries: Vec<JournalEntry>,
}Expand description
All outputs from one ECL generation run.
Fields§
§ecl_models: Vec<EclModel>ECL models (one per company processed).
provision_movements: Vec<EclProvisionMovement>Provision movement roll-forwards.
journal_entries: Vec<JournalEntry>Journal entries (Bad Debt Expense / Allowance).
Trait Implementations§
Source§impl Debug for EclSnapshot
impl Debug for EclSnapshot
Source§impl Default for EclSnapshot
impl Default for EclSnapshot
Source§fn default() -> EclSnapshot
fn default() -> EclSnapshot
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EclSnapshot
impl RefUnwindSafe for EclSnapshot
impl Send for EclSnapshot
impl Sync for EclSnapshot
impl Unpin for EclSnapshot
impl UnsafeUnpin for EclSnapshot
impl UnwindSafe for EclSnapshot
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> 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>
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.