pub enum UsageReportRecord {
Report(Box<UsageReport>),
Checksum(String),
}Expand description
One line from the usage-report response.
Variants§
Report(Box<UsageReport>)
A database usage record decoded from one NDJSON line.
Checksum(String)
The documented final MD5 checksum line.
Trait Implementations§
Source§impl Clone for UsageReportRecord
impl Clone for UsageReportRecord
Source§fn clone(&self) -> UsageReportRecord
fn clone(&self) -> UsageReportRecord
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 UsageReportRecord
impl Debug for UsageReportRecord
Source§impl PartialEq for UsageReportRecord
impl PartialEq for UsageReportRecord
impl StructuralPartialEq for UsageReportRecord
Auto Trait Implementations§
impl Freeze for UsageReportRecord
impl RefUnwindSafe for UsageReportRecord
impl Send for UsageReportRecord
impl Sync for UsageReportRecord
impl Unpin for UsageReportRecord
impl UnsafeUnpin for UsageReportRecord
impl UnwindSafe for UsageReportRecord
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