pub struct WriteBudgetDelta {
pub attributed_bytes: u64,
pub date: NaiveDate,
}Expand description
One observation’s outcome: how many bytes were attributed, and to when.
Fields§
§attributed_bytes: u64Bytes attributed to date by this observation.
date: NaiveDateUTC date the bytes were attributed to.
Trait Implementations§
Source§impl Clone for WriteBudgetDelta
impl Clone for WriteBudgetDelta
impl Copy for WriteBudgetDelta
Source§impl Debug for WriteBudgetDelta
impl Debug for WriteBudgetDelta
impl Eq for WriteBudgetDelta
Source§impl PartialEq for WriteBudgetDelta
impl PartialEq for WriteBudgetDelta
impl StructuralPartialEq for WriteBudgetDelta
Auto Trait Implementations§
impl Freeze for WriteBudgetDelta
impl RefUnwindSafe for WriteBudgetDelta
impl Send for WriteBudgetDelta
impl Sync for WriteBudgetDelta
impl Unpin for WriteBudgetDelta
impl UnsafeUnpin for WriteBudgetDelta
impl UnwindSafe for WriteBudgetDelta
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