pub struct TimingAnalyzerConfig {
pub time_bucket_size: u32,
pub include_connections: bool,
pub include_peak_analysis: bool,
}Expand description
Timing analyzer configuration
Fields§
§time_bucket_size: u32Time bucket size in minutes for aggregation
include_connections: boolWhether to include connection analysis
include_peak_analysis: boolWhether to include peak usage analysis
Trait Implementations§
Source§impl Clone for TimingAnalyzerConfig
impl Clone for TimingAnalyzerConfig
Source§fn clone(&self) -> TimingAnalyzerConfig
fn clone(&self) -> TimingAnalyzerConfig
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 TimingAnalyzerConfig
impl Debug for TimingAnalyzerConfig
Auto Trait Implementations§
impl Freeze for TimingAnalyzerConfig
impl RefUnwindSafe for TimingAnalyzerConfig
impl Send for TimingAnalyzerConfig
impl Sync for TimingAnalyzerConfig
impl Unpin for TimingAnalyzerConfig
impl UnsafeUnpin for TimingAnalyzerConfig
impl UnwindSafe for TimingAnalyzerConfig
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