pub struct MonthlyReport {
pub monthly_balances: Vec<MonthlyBalance>,
}
Fields§
§monthly_balances: Vec<MonthlyBalance>
Implementations§
Source§impl MonthlyReport
impl MonthlyReport
pub fn new() -> MonthlyReport
Trait Implementations§
Source§impl Clone for MonthlyReport
impl Clone for MonthlyReport
Source§fn clone(&self) -> MonthlyReport
fn clone(&self) -> MonthlyReport
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 MonthlyReport
impl Debug for MonthlyReport
Source§impl Default for MonthlyReport
impl Default for MonthlyReport
Auto Trait Implementations§
impl Freeze for MonthlyReport
impl RefUnwindSafe for MonthlyReport
impl Send for MonthlyReport
impl Sync for MonthlyReport
impl Unpin for MonthlyReport
impl UnwindSafe for MonthlyReport
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