pub struct Token { /* private fields */ }
Expand description
An in progress COGS measurement.
The measurement is recorded when the token is dropped.
Implementations§
Source§impl Token
impl Token
Sourcepub fn noop() -> Self
pub fn noop() -> Self
Creates a new no-op token, which records nothing.
This is primarily useful for testing.
Sourcepub fn start_category(&mut self, category: impl Category) -> CategoryToken<'_>
pub fn start_category(&mut self, category: impl Category) -> CategoryToken<'_>
Starts a categorized measurement.
The measurement is finalized when the returned CategoryToken
is dropped.
Instead of manually starting a categorized measurement, the crate::with
macro can be used.
Sourcepub fn update<T: Into<FeatureWeights>>(&mut self, features: T)
pub fn update<T: Into<FeatureWeights>>(&mut self, features: T)
Updates the app features to which the active measurement is attributed to.
§Example:
fn process(cogs: &Cogs, item: &Item) {
let mut token = cogs.timed(ResourceId::Relay, AppFeature::Unattributed);
// App feature is only known after some computations.
if do_something(item) {
token.update(AppFeature::Spans);
} else {
token.update(AppFeature::Transactions);
}
}
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Token
impl !RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl !UnwindSafe for Token
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