pub struct DataClassificationGateSuggestor { /* private fields */ }Expand description
Blocks proposals containing PII or sensitive data patterns from crossing boundaries. Scans proposal content for configurable patterns (emails, SSNs, credit cards, etc.).
Implementations§
Source§impl DataClassificationGateSuggestor
impl DataClassificationGateSuggestor
Sourcepub fn default_patterns(watched_key: ContextKey) -> Self
pub fn default_patterns(watched_key: ContextKey) -> Self
Create with default PII patterns (email, SSN, credit card, phone).
Patterns are compiled once via [DEFAULT_PII_PATTERNS] and cloned here,
so construction is cheap after the first call.
Trait Implementations§
Source§impl Suggestor for DataClassificationGateSuggestor
impl Suggestor for DataClassificationGateSuggestor
Source§fn name(&self) -> &'static str
fn name(&self) -> &'static str
Human-readable name, used for logging and provenance. Read more
Source§fn dependencies(&self) -> &[ContextKey]
fn dependencies(&self) -> &[ContextKey]
Context keys this suggestor reads from. Read more
Source§fn accepts(&self, ctx: &dyn Context) -> bool
fn accepts(&self, ctx: &dyn Context) -> bool
Pure predicate: should this suggestor execute given the current context? Read more
Source§fn provenance(&self) -> Provenance
fn provenance(&self) -> Provenance
Typed provenance for this suggestor’s emitted facts and execution span. Read more
Auto Trait Implementations§
impl Freeze for DataClassificationGateSuggestor
impl RefUnwindSafe for DataClassificationGateSuggestor
impl Send for DataClassificationGateSuggestor
impl Sync for DataClassificationGateSuggestor
impl Unpin for DataClassificationGateSuggestor
impl UnsafeUnpin for DataClassificationGateSuggestor
impl UnwindSafe for DataClassificationGateSuggestor
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> 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