pub enum ContentFidelity {
Exact,
Normalized,
Summarized,
Omitted,
}Expand description
The fidelity of a frame’s carried content relative to its canonical source.
A missing value means exact for a legacy full frame.
Variants§
Trait Implementations§
Source§impl Clone for ContentFidelity
impl Clone for ContentFidelity
Source§fn clone(&self) -> ContentFidelity
fn clone(&self) -> ContentFidelity
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 ContentFidelity
Source§impl Debug for ContentFidelity
impl Debug for ContentFidelity
Source§impl<'de> Deserialize<'de> for ContentFidelity
impl<'de> Deserialize<'de> for ContentFidelity
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 ContentFidelity
Source§impl PartialEq for ContentFidelity
impl PartialEq for ContentFidelity
Source§impl Serialize for ContentFidelity
impl Serialize for ContentFidelity
impl StructuralPartialEq for ContentFidelity
Auto Trait Implementations§
impl Freeze for ContentFidelity
impl RefUnwindSafe for ContentFidelity
impl Send for ContentFidelity
impl Sync for ContentFidelity
impl Unpin for ContentFidelity
impl UnsafeUnpin for ContentFidelity
impl UnwindSafe for ContentFidelity
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