pub struct AuthzProfiler { /* private fields */ }Expand description
Performance profiler for authorization operations
Implementations§
Source§impl AuthzProfiler
impl AuthzProfiler
Sourcepub fn profile<F, T>(&self, operation_name: &str, f: F) -> Twhere
F: FnOnce() -> T,
pub fn profile<F, T>(&self, operation_name: &str, f: F) -> Twhere
F: FnOnce() -> T,
Profile a synchronous operation
Sourcepub async fn profile_async<F, T>(&self, operation_name: &str, fut: F) -> Twhere
F: Future<Output = T>,
pub async fn profile_async<F, T>(&self, operation_name: &str, fut: F) -> Twhere
F: Future<Output = T>,
Profile an asynchronous operation
Sourcepub fn record_measurement(&self, operation_name: &str, duration: Duration)
pub fn record_measurement(&self, operation_name: &str, duration: Duration)
Record a measurement manually
Sourcepub fn get_operation_metrics(
&self,
operation_name: &str,
) -> Option<OperationMetrics>
pub fn get_operation_metrics( &self, operation_name: &str, ) -> Option<OperationMetrics>
Get metrics for a specific operation
Sourcepub fn get_stats(&self) -> ProfilingStats
pub fn get_stats(&self) -> ProfilingStats
Get all profiling statistics
Sourcepub fn generate_report(&self) -> String
pub fn generate_report(&self) -> String
Generate a performance report
Sourcepub fn export_json(&self) -> Result<String>
pub fn export_json(&self) -> Result<String>
Export metrics as JSON
Trait Implementations§
Source§impl Clone for AuthzProfiler
impl Clone for AuthzProfiler
Source§fn clone(&self) -> AuthzProfiler
fn clone(&self) -> AuthzProfiler
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for AuthzProfiler
impl RefUnwindSafe for AuthzProfiler
impl Send for AuthzProfiler
impl Sync for AuthzProfiler
impl Unpin for AuthzProfiler
impl UnwindSafe for AuthzProfiler
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more