pub struct RceConfig {
pub enabled: bool,
pub target_tools: Vec<String>,
pub custom_patterns: Vec<String>,
}Expand description
Anti-RCE pattern detection configuration
Fields§
§enabled: boolEnable RCE pattern detection
target_tools: Vec<String>Tools to apply RCE detection to
custom_patterns: Vec<String>Custom patterns to add (in addition to built-in)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RceConfig
impl<'de> Deserialize<'de> for RceConfig
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 RceConfig
impl RefUnwindSafe for RceConfig
impl Send for RceConfig
impl Sync for RceConfig
impl Unpin for RceConfig
impl UnsafeUnpin for RceConfig
impl UnwindSafe for RceConfig
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