pub struct SecretScanConfig {
pub action: String,
pub custom_patterns: Vec<SecretPatternConfig>,
}Expand description
Configuration for the secret scanning guardrail.
Fields§
§action: StringAction: "redact" or "deny". Default: "redact".
custom_patterns: Vec<SecretPatternConfig>Additional custom patterns as label+regex pairs.
Trait Implementations§
Source§impl Clone for SecretScanConfig
impl Clone for SecretScanConfig
Source§fn clone(&self) -> SecretScanConfig
fn clone(&self) -> SecretScanConfig
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 SecretScanConfig
impl Debug for SecretScanConfig
Source§impl<'de> Deserialize<'de> for SecretScanConfig
impl<'de> Deserialize<'de> for SecretScanConfig
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 SecretScanConfig
impl RefUnwindSafe for SecretScanConfig
impl Send for SecretScanConfig
impl Sync for SecretScanConfig
impl Unpin for SecretScanConfig
impl UnsafeUnpin for SecretScanConfig
impl UnwindSafe for SecretScanConfig
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