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