#[non_exhaustive]pub struct ClassifierDetails {
pub name: Option<String>,
pub type: Option<String>,
pub uid: Option<String>,
}Expand description
Classifier Details
The Classifier Details object describes details about the classifier used for data classification.
[] Category: | Name: classifier_details
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>Name
The name of the classifier.
recommended
type: Option<String>Type
The type of the classifier.
required
uid: Option<String>Unique ID
The unique identifier of the classifier.
recommended
Trait Implementations§
Source§impl Clone for ClassifierDetails
impl Clone for ClassifierDetails
Source§fn clone(&self) -> ClassifierDetails
fn clone(&self) -> ClassifierDetails
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 ClassifierDetails
impl Debug for ClassifierDetails
Source§impl Default for ClassifierDetails
impl Default for ClassifierDetails
Source§fn default() -> ClassifierDetails
fn default() -> ClassifierDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClassifierDetailswhere
ClassifierDetails: Default,
impl<'de> Deserialize<'de> for ClassifierDetailswhere
ClassifierDetails: Default,
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 PartialEq for ClassifierDetails
impl PartialEq for ClassifierDetails
Source§impl Serialize for ClassifierDetails
impl Serialize for ClassifierDetails
impl StructuralPartialEq for ClassifierDetails
Auto Trait Implementations§
impl Freeze for ClassifierDetails
impl RefUnwindSafe for ClassifierDetails
impl Send for ClassifierDetails
impl Sync for ClassifierDetails
impl Unpin for ClassifierDetails
impl UnwindSafe for ClassifierDetails
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