pub struct CompiledRules {
pub rules: Vec<CompiledRule>,
}
Expand description
Represents a collection of all compiled rules for efficient sanitization.
This struct acts as the primary container for the set of rules that will be applied during a sanitization operation.
Fields§
§rules: Vec<CompiledRule>
A vector of CompiledRule
instances ready for application.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompiledRules
impl RefUnwindSafe for CompiledRules
impl Send for CompiledRules
impl Sync for CompiledRules
impl Unpin for CompiledRules
impl UnwindSafe for CompiledRules
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