pub struct CategoryEnforcement {
pub finding_type: String,
pub action: EnforcementMode,
}Expand description
Per-category enforcement override.
Fields§
§finding_type: StringThe finding type to match (e.g. “prompt_injection”, “jailbreak”).
action: EnforcementModeEnforcement action for this category.
Trait Implementations§
Source§impl Clone for CategoryEnforcement
impl Clone for CategoryEnforcement
Source§fn clone(&self) -> CategoryEnforcement
fn clone(&self) -> CategoryEnforcement
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 CategoryEnforcement
impl Debug for CategoryEnforcement
Source§impl<'de> Deserialize<'de> for CategoryEnforcement
impl<'de> Deserialize<'de> for CategoryEnforcement
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 CategoryEnforcement
impl RefUnwindSafe for CategoryEnforcement
impl Send for CategoryEnforcement
impl Sync for CategoryEnforcement
impl Unpin for CategoryEnforcement
impl UnsafeUnpin for CategoryEnforcement
impl UnwindSafe for CategoryEnforcement
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