pub struct DictionaryRecognizer { /* private fields */ }Expand description
Lookup-based Recognizer for tenant-specific PII.
Matches exact strings from a runtime-supplied dictionary: order IDs, song titles, customer codes, or any domain-specific identifiers that regex cannot reliably detect.
Supply dictionaries at runtime via DetectContext or the CLI’s
--context-json wiring. Dictionary entries are session-scoped detection
inputs and are not stored in the audit log.
Implementations§
Source§impl DictionaryRecognizer
impl DictionaryRecognizer
pub fn new( id: impl Into<String>, class: PiiClass, dictionary_name: impl Into<String>, case_sensitive: bool, token_family: impl Into<String>, ) -> Self
pub fn with_rulepack_fields( id: impl Into<String>, class: PiiClass, dictionary_name: impl Into<String>, case_sensitive: bool, token_family: impl Into<String>, locales: Vec<LocaleTag>, score: f32, priority: i32, ) -> Self
pub fn dictionary_name(&self) -> &str
pub fn case_sensitive(&self) -> bool
Trait Implementations§
Source§impl Recognizer for DictionaryRecognizer
impl Recognizer for DictionaryRecognizer
Source§fn supported_class(&self) -> &PiiClass
fn supported_class(&self) -> &PiiClass
PII class supported by this recognizer.
Source§fn detect(
&self,
input: &str,
ctx: &DetectContext<'_>,
) -> Result<Vec<Candidate>, DetectError>
fn detect( &self, input: &str, ctx: &DetectContext<'_>, ) -> Result<Vec<Candidate>, DetectError>
Detects PII candidates in the supplied input and context.
Source§fn token_family(&self) -> &str
fn token_family(&self) -> &str
Token family used for candidate token emission.
Source§fn validator_kind(&self) -> Option<ValidatorKind>
fn validator_kind(&self) -> Option<ValidatorKind>
Optional validator kind used by pre-resolver validator-veto.
Auto Trait Implementations§
impl !Freeze for DictionaryRecognizer
impl RefUnwindSafe for DictionaryRecognizer
impl Send for DictionaryRecognizer
impl Sync for DictionaryRecognizer
impl Unpin for DictionaryRecognizer
impl UnsafeUnpin for DictionaryRecognizer
impl UnwindSafe for DictionaryRecognizer
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more