pub struct AccountingEvent {
pub source: String,
pub operation: String,
pub usage: BTreeMap<String, UsageValue>,
}Fields§
§source: String§operation: String§usage: BTreeMap<String, UsageValue>Trait Implementations§
Source§impl Clone for AccountingEvent
impl Clone for AccountingEvent
Source§fn clone(&self) -> AccountingEvent
fn clone(&self) -> AccountingEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AccountingEvent
impl Debug for AccountingEvent
Source§impl Default for AccountingEvent
impl Default for AccountingEvent
Source§fn default() -> AccountingEvent
fn default() -> AccountingEvent
Returns the “default value” for a type. Read more
impl Eq for AccountingEvent
Source§impl PartialEq for AccountingEvent
impl PartialEq for AccountingEvent
impl StructuralPartialEq for AccountingEvent
Auto Trait Implementations§
impl Freeze for AccountingEvent
impl RefUnwindSafe for AccountingEvent
impl Send for AccountingEvent
impl Sync for AccountingEvent
impl Unpin for AccountingEvent
impl UnsafeUnpin for AccountingEvent
impl UnwindSafe for AccountingEvent
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