pub struct CogsMeasurement {
pub resource: ResourceId,
pub feature: AppFeature,
pub category: Option<&'static str>,
pub value: Value,
}
Expand description
A COGS measurement.
The measurement has already been attributed to a specific feature.
Fields§
§resource: ResourceId
The measured resource.
feature: AppFeature
The measured app feature.
category: Option<&'static str>
Optional category for this measurement.
A category further subdivides a measurement for a specific feature.
value: Value
The measurement value.
Trait Implementations§
Source§impl Clone for CogsMeasurement
impl Clone for CogsMeasurement
Source§fn clone(&self) -> CogsMeasurement
fn clone(&self) -> CogsMeasurement
Returns a copy 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 CogsMeasurement
impl Debug for CogsMeasurement
impl Copy for CogsMeasurement
Auto Trait Implementations§
impl Freeze for CogsMeasurement
impl RefUnwindSafe for CogsMeasurement
impl Send for CogsMeasurement
impl Sync for CogsMeasurement
impl Unpin for CogsMeasurement
impl UnwindSafe for CogsMeasurement
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