pub enum ProcessContentCaptureMode {
Off,
MetadataOnly,
RedactedSummary,
ContentRef,
RawContentIfPolicyAllows,
}Expand description
Enumerates the finite process content capture mode cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
Off
Use this variant when the contract needs to represent off; selecting it has no side effect by itself.
MetadataOnly
Use this variant when the contract needs to represent metadata only; selecting it has no side effect by itself.
RedactedSummary
Use this variant when the contract needs to represent redacted summary; selecting it has no side effect by itself.
ContentRef
Use this variant when the contract needs to represent content ref; selecting it has no side effect by itself.
RawContentIfPolicyAllows
Use this variant when the contract needs to represent raw content if policy allows; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for ProcessContentCaptureMode
impl Clone for ProcessContentCaptureMode
Source§fn clone(&self) -> ProcessContentCaptureMode
fn clone(&self) -> ProcessContentCaptureMode
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 ProcessContentCaptureMode
impl Debug for ProcessContentCaptureMode
Source§impl<'de> Deserialize<'de> for ProcessContentCaptureMode
impl<'de> Deserialize<'de> for ProcessContentCaptureMode
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 ProcessContentCaptureMode
Source§impl PartialEq for ProcessContentCaptureMode
impl PartialEq for ProcessContentCaptureMode
Source§fn eq(&self, other: &ProcessContentCaptureMode) -> bool
fn eq(&self, other: &ProcessContentCaptureMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessContentCaptureMode
Auto Trait Implementations§
impl Freeze for ProcessContentCaptureMode
impl RefUnwindSafe for ProcessContentCaptureMode
impl Send for ProcessContentCaptureMode
impl Sync for ProcessContentCaptureMode
impl Unpin for ProcessContentCaptureMode
impl UnsafeUnpin for ProcessContentCaptureMode
impl UnwindSafe for ProcessContentCaptureMode
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