pub struct ProfilerConfig {
pub enable_timing: bool,
pub enable_memory_tracking: bool,
pub enable_cpu_monitoring: bool,
pub enable_gpu_monitoring: bool,
pub sample_interval_ms: u64,
pub max_sessions: usize,
pub enable_bottleneck_detection: bool,
pub enable_optimization_hints: bool,
}Expand description
Configuration for the performance profiler
Fields§
§enable_timing: boolEnable detailed timing measurements
enable_memory_tracking: boolEnable memory usage tracking
enable_cpu_monitoring: boolEnable CPU usage monitoring
enable_gpu_monitoring: boolEnable GPU usage monitoring if available
sample_interval_ms: u64Sample interval for continuous monitoring (ms)
max_sessions: usizeMaximum number of profiling sessions to keep
enable_bottleneck_detection: boolEnable automatic bottleneck detection
enable_optimization_hints: boolEnable optimization recommendations
Trait Implementations§
Source§impl Clone for ProfilerConfig
impl Clone for ProfilerConfig
Source§fn clone(&self) -> ProfilerConfig
fn clone(&self) -> ProfilerConfig
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 ProfilerConfig
impl Debug for ProfilerConfig
Source§impl Default for ProfilerConfig
impl Default for ProfilerConfig
Source§impl<'de> Deserialize<'de> for ProfilerConfig
impl<'de> Deserialize<'de> for ProfilerConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProfilerConfig
impl RefUnwindSafe for ProfilerConfig
impl Send for ProfilerConfig
impl Sync for ProfilerConfig
impl Unpin for ProfilerConfig
impl UnwindSafe for ProfilerConfig
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> 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