pub enum ContentCaptureMode {
Off,
MetadataOnly,
RedactedSummary,
RawContent,
}Expand description
Enumerates the finite 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.
RawContent
Use this variant when the contract needs to represent raw content; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for ContentCaptureMode
impl Clone for ContentCaptureMode
Source§fn clone(&self) -> ContentCaptureMode
fn clone(&self) -> ContentCaptureMode
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 ContentCaptureMode
impl Debug for ContentCaptureMode
Source§impl<'de> Deserialize<'de> for ContentCaptureMode
impl<'de> Deserialize<'de> for ContentCaptureMode
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 ContentCaptureMode
impl PartialEq for ContentCaptureMode
Source§fn eq(&self, other: &ContentCaptureMode) -> bool
fn eq(&self, other: &ContentCaptureMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ContentCaptureMode
impl Serialize for ContentCaptureMode
impl Eq for ContentCaptureMode
impl StructuralPartialEq for ContentCaptureMode
Auto Trait Implementations§
impl Freeze for ContentCaptureMode
impl RefUnwindSafe for ContentCaptureMode
impl Send for ContentCaptureMode
impl Sync for ContentCaptureMode
impl Unpin for ContentCaptureMode
impl UnsafeUnpin for ContentCaptureMode
impl UnwindSafe for ContentCaptureMode
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