pub struct SensitivityScore {
pub score: Option<String>,
}Expand description
Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive.
This type is not used in any activity, and only used as part of another schema.
Fields§
§score: Option<String>The sensitivity score applied to the resource.
Trait Implementations§
Source§impl Clone for SensitivityScore
impl Clone for SensitivityScore
Source§fn clone(&self) -> SensitivityScore
fn clone(&self) -> SensitivityScore
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 SensitivityScore
impl Debug for SensitivityScore
Source§impl Default for SensitivityScore
impl Default for SensitivityScore
Source§fn default() -> SensitivityScore
fn default() -> SensitivityScore
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SensitivityScore
impl<'de> Deserialize<'de> for SensitivityScore
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 Serialize for SensitivityScore
impl Serialize for SensitivityScore
impl Part for SensitivityScore
Auto Trait Implementations§
impl Freeze for SensitivityScore
impl RefUnwindSafe for SensitivityScore
impl Send for SensitivityScore
impl Sync for SensitivityScore
impl Unpin for SensitivityScore
impl UnwindSafe for SensitivityScore
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