pub enum ContextRedactionStatus {
None,
Redacted,
PartiallyRedacted,
Unknown,
}Expand description
Redaction status vocabulary on context envelopes.
Variants§
None
No redaction.
Redacted
Redacted.
PartiallyRedacted
Partially redacted.
Unknown
Redaction posture unknown.
Trait Implementations§
Source§impl Clone for ContextRedactionStatus
impl Clone for ContextRedactionStatus
Source§fn clone(&self) -> ContextRedactionStatus
fn clone(&self) -> ContextRedactionStatus
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 ContextRedactionStatus
impl Debug for ContextRedactionStatus
Source§impl<'de> Deserialize<'de> for ContextRedactionStatus
impl<'de> Deserialize<'de> for ContextRedactionStatus
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 ContextRedactionStatus
impl Hash for ContextRedactionStatus
Source§impl PartialEq for ContextRedactionStatus
impl PartialEq for ContextRedactionStatus
Source§fn eq(&self, other: &ContextRedactionStatus) -> bool
fn eq(&self, other: &ContextRedactionStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ContextRedactionStatus
impl Serialize for ContextRedactionStatus
impl Copy for ContextRedactionStatus
impl Eq for ContextRedactionStatus
impl StructuralPartialEq for ContextRedactionStatus
Auto Trait Implementations§
impl Freeze for ContextRedactionStatus
impl RefUnwindSafe for ContextRedactionStatus
impl Send for ContextRedactionStatus
impl Sync for ContextRedactionStatus
impl Unpin for ContextRedactionStatus
impl UnsafeUnpin for ContextRedactionStatus
impl UnwindSafe for ContextRedactionStatus
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