pub struct PluginPerformanceMonitor { /* private fields */ }Expand description
Plugin performance monitor
Implementations§
Source§impl PluginPerformanceMonitor
impl PluginPerformanceMonitor
Sourcepub fn record_execution(
&mut self,
plugin: &PluginInstance,
duration: Duration,
metrics: PluginMetrics,
)
pub fn record_execution( &mut self, plugin: &PluginInstance, duration: Duration, metrics: PluginMetrics, )
Record plugin execution metrics
Sourcepub fn record_loading(&mut self, plugin: &PluginInstance, duration: Duration)
pub fn record_loading(&mut self, plugin: &PluginInstance, duration: Duration)
Record plugin loading metrics
Sourcepub fn get_statistics(&self) -> PluginStatistics
pub fn get_statistics(&self) -> PluginStatistics
Get plugin statistics
Auto Trait Implementations§
impl Freeze for PluginPerformanceMonitor
impl RefUnwindSafe for PluginPerformanceMonitor
impl Send for PluginPerformanceMonitor
impl Sync for PluginPerformanceMonitor
impl Unpin for PluginPerformanceMonitor
impl UnwindSafe for PluginPerformanceMonitor
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> 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