pub enum PatternCategory {
Contact,
Identifier,
Network,
Geographic,
Financial,
FilePath,
Other,
}Expand description
Semantic category for a detected pattern.
Variants§
Contact
Email addresses, phone numbers.
Identifier
UUIDs, fiscal codes, tax IDs.
Network
IPv4, IPv6, MAC addresses, URLs.
Geographic
Coordinates and postal codes.
Financial
IBANs, credit cards, SWIFT/BIC.
FilePath
Unix or Windows file paths.
Other
Uncategorized patterns.
Trait Implementations§
Source§impl Clone for PatternCategory
impl Clone for PatternCategory
Source§fn clone(&self) -> PatternCategory
fn clone(&self) -> PatternCategory
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 PatternCategory
impl Debug for PatternCategory
Source§impl<'de> Deserialize<'de> for PatternCategory
impl<'de> Deserialize<'de> for PatternCategory
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
Source§impl Display for PatternCategory
impl Display for PatternCategory
Source§impl PartialEq for PatternCategory
impl PartialEq for PatternCategory
Source§fn eq(&self, other: &PatternCategory) -> bool
fn eq(&self, other: &PatternCategory) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PatternCategory
impl Serialize for PatternCategory
impl Eq for PatternCategory
impl StructuralPartialEq for PatternCategory
Auto Trait Implementations§
impl Freeze for PatternCategory
impl RefUnwindSafe for PatternCategory
impl Send for PatternCategory
impl Sync for PatternCategory
impl Unpin for PatternCategory
impl UnsafeUnpin for PatternCategory
impl UnwindSafe for PatternCategory
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