pub enum EntityCategory {
Show 15 variants
Person,
Organization,
Location,
Amount,
Percentage,
Date,
Email,
PhoneNumber,
IpAddress,
Secret,
Url,
Project,
Business,
Infra,
Custom(String),
}Expand description
Categories of sensitive entities.
Variants§
Person
Organization
Location
Amount
Percentage
Date
PhoneNumber
IpAddress
Secret
Url
Project
Business
Infra
Custom(String)
Trait Implementations§
Source§impl Clone for EntityCategory
impl Clone for EntityCategory
Source§fn clone(&self) -> EntityCategory
fn clone(&self) -> EntityCategory
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 EntityCategory
impl Debug for EntityCategory
Source§impl<'de> Deserialize<'de> for EntityCategory
impl<'de> Deserialize<'de> for EntityCategory
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 Hash for EntityCategory
impl Hash for EntityCategory
Source§impl PartialEq for EntityCategory
impl PartialEq for EntityCategory
Source§impl Serialize for EntityCategory
impl Serialize for EntityCategory
impl Eq for EntityCategory
impl StructuralPartialEq for EntityCategory
Auto Trait Implementations§
impl Freeze for EntityCategory
impl RefUnwindSafe for EntityCategory
impl Send for EntityCategory
impl Sync for EntityCategory
impl Unpin for EntityCategory
impl UnsafeUnpin for EntityCategory
impl UnwindSafe for EntityCategory
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