pub enum SemanticValueSensitivity {
Public,
Sensitive,
}Expand description
Whether a semantic value may safely cross normal artifact boundaries.
Variants§
Public
The application declares the value safe to expose.
Sensitive
The value is sensitive and must be redacted by default.
Trait Implementations§
Source§impl Clone for SemanticValueSensitivity
impl Clone for SemanticValueSensitivity
Source§fn clone(&self) -> SemanticValueSensitivity
fn clone(&self) -> SemanticValueSensitivity
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 moreimpl Copy for SemanticValueSensitivity
Source§impl Debug for SemanticValueSensitivity
impl Debug for SemanticValueSensitivity
Source§impl<'de> Deserialize<'de> for SemanticValueSensitivity
impl<'de> Deserialize<'de> for SemanticValueSensitivity
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
impl Eq for SemanticValueSensitivity
Source§impl PartialEq for SemanticValueSensitivity
impl PartialEq for SemanticValueSensitivity
Source§impl Serialize for SemanticValueSensitivity
impl Serialize for SemanticValueSensitivity
impl StructuralPartialEq for SemanticValueSensitivity
Auto Trait Implementations§
impl Freeze for SemanticValueSensitivity
impl RefUnwindSafe for SemanticValueSensitivity
impl Send for SemanticValueSensitivity
impl Sync for SemanticValueSensitivity
impl Unpin for SemanticValueSensitivity
impl UnsafeUnpin for SemanticValueSensitivity
impl UnwindSafe for SemanticValueSensitivity
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