pub struct SecureOpsConfig {
pub monitors: Option<MonitorsToggle>,
pub cost: Option<CostLimits>,
pub memory: Option<MemorySettings>,
pub skills: Option<SkillsSettings>,
pub network: Option<NetworkSettings>,
pub failure_mode: Option<FailureMode>,
pub risk_profile: Option<RiskProfile>,
pub risk_profiles: Option<HashMap<String, RiskProfileDef>>,
pub behavioral: Option<BehavioralSettings>,
}Expand description
SecureOps-specific configuration block.
Fields§
§monitors: Option<MonitorsToggle>§cost: Option<CostLimits>§memory: Option<MemorySettings>§skills: Option<SkillsSettings>§network: Option<NetworkSettings>§failure_mode: Option<FailureMode>§risk_profile: Option<RiskProfile>§risk_profiles: Option<HashMap<String, RiskProfileDef>>§behavioral: Option<BehavioralSettings>Trait Implementations§
Source§impl Clone for SecureOpsConfig
impl Clone for SecureOpsConfig
Source§fn clone(&self) -> SecureOpsConfig
fn clone(&self) -> SecureOpsConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SecureOpsConfig
impl Debug for SecureOpsConfig
Source§impl Default for SecureOpsConfig
impl Default for SecureOpsConfig
Source§fn default() -> SecureOpsConfig
fn default() -> SecureOpsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecureOpsConfigwhere
SecureOpsConfig: Default,
impl<'de> Deserialize<'de> for SecureOpsConfigwhere
SecureOpsConfig: Default,
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
Source§impl PartialEq for SecureOpsConfig
impl PartialEq for SecureOpsConfig
Source§fn eq(&self, other: &SecureOpsConfig) -> bool
fn eq(&self, other: &SecureOpsConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SecureOpsConfig
impl Serialize for SecureOpsConfig
impl StructuralPartialEq for SecureOpsConfig
Auto Trait Implementations§
impl Freeze for SecureOpsConfig
impl RefUnwindSafe for SecureOpsConfig
impl Send for SecureOpsConfig
impl Sync for SecureOpsConfig
impl Unpin for SecureOpsConfig
impl UnsafeUnpin for SecureOpsConfig
impl UnwindSafe for SecureOpsConfig
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