pub struct ProviderLifecycleStats {
pub provider_count: usize,
pub total_time: Duration,
pub dependency_resolution_time: Duration,
pub registration_time: Duration,
pub container_build_time: Duration,
pub boot_time: Duration,
}Expand description
Statistics for provider lifecycle execution
Fields§
§provider_count: usize§total_time: Duration§dependency_resolution_time: Duration§registration_time: Duration§container_build_time: Duration§boot_time: DurationImplementations§
Trait Implementations§
Source§impl Clone for ProviderLifecycleStats
impl Clone for ProviderLifecycleStats
Source§fn clone(&self) -> ProviderLifecycleStats
fn clone(&self) -> ProviderLifecycleStats
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 moreSource§impl Debug for ProviderLifecycleStats
impl Debug for ProviderLifecycleStats
Auto Trait Implementations§
impl Freeze for ProviderLifecycleStats
impl RefUnwindSafe for ProviderLifecycleStats
impl Send for ProviderLifecycleStats
impl Sync for ProviderLifecycleStats
impl Unpin for ProviderLifecycleStats
impl UnwindSafe for ProviderLifecycleStats
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