pub struct AimdsConfig {
pub detection: DetectionConfig,
pub analysis: AnalysisConfig,
pub response: ResponseConfig,
pub system: SystemConfig,
}Expand description
Main AIMDS configuration
Fields§
§detection: DetectionConfig§analysis: AnalysisConfig§response: ResponseConfig§system: SystemConfigTrait Implementations§
Source§impl Clone for AimdsConfig
impl Clone for AimdsConfig
Source§fn clone(&self) -> AimdsConfig
fn clone(&self) -> AimdsConfig
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 AimdsConfig
impl Debug for AimdsConfig
Source§impl Default for AimdsConfig
impl Default for AimdsConfig
Source§fn default() -> AimdsConfig
fn default() -> AimdsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AimdsConfig
impl<'de> Deserialize<'de> for AimdsConfig
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 AimdsConfig
impl RefUnwindSafe for AimdsConfig
impl Send for AimdsConfig
impl Sync for AimdsConfig
impl Unpin for AimdsConfig
impl UnwindSafe for AimdsConfig
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