pub struct ProbeConfig {
pub probe: ProbeSettings,
pub network: NetworkSettings,
pub controller: ControllerSettings,
pub storage: StorageSettings,
pub metrics: MetricsSettings,
pub logging: LoggingSettings,
}Expand description
Main probe configuration
Fields§
§probe: ProbeSettings§network: NetworkSettings§controller: ControllerSettings§storage: StorageSettings§metrics: MetricsSettings§logging: LoggingSettingsImplementations§
Trait Implementations§
Source§impl Clone for ProbeConfig
impl Clone for ProbeConfig
Source§fn clone(&self) -> ProbeConfig
fn clone(&self) -> ProbeConfig
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 ProbeConfig
impl Debug for ProbeConfig
Source§impl Default for ProbeConfig
impl Default for ProbeConfig
Source§fn default() -> ProbeConfig
fn default() -> ProbeConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProbeConfig
impl<'de> Deserialize<'de> for ProbeConfig
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 ProbeConfig
impl RefUnwindSafe for ProbeConfig
impl Send for ProbeConfig
impl Sync for ProbeConfig
impl Unpin for ProbeConfig
impl UnwindSafe for ProbeConfig
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