pub struct TelemetryConfig {
pub service_name: String,
pub service_version: String,
pub detailed_tracking: bool,
pub enable_metrics: bool,
pub enable_error_tracking: bool,
pub enable_performance_tracking: bool,
}Expand description
Telemetry configuration for the role system.
Fields§
§service_name: StringService name for metrics and tracing
service_version: StringService version for identification
detailed_tracking: boolEnable detailed operation tracking
enable_metrics: boolEnable metrics collection
enable_error_tracking: boolEnable error tracking
enable_performance_tracking: boolEnable performance tracking
Trait Implementations§
Source§impl Clone for TelemetryConfig
impl Clone for TelemetryConfig
Source§fn clone(&self) -> TelemetryConfig
fn clone(&self) -> TelemetryConfig
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 TelemetryConfig
impl Debug for TelemetryConfig
Auto Trait Implementations§
impl Freeze for TelemetryConfig
impl RefUnwindSafe for TelemetryConfig
impl Send for TelemetryConfig
impl Sync for TelemetryConfig
impl Unpin for TelemetryConfig
impl UnwindSafe for TelemetryConfig
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