pub enum FrameQuality {
Drop,
Low,
Medium,
High,
}Variants§
Trait Implementations§
Source§impl Clone for FrameQuality
impl Clone for FrameQuality
Source§fn clone(&self) -> FrameQuality
fn clone(&self) -> FrameQuality
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 FrameQuality
Source§impl Debug for FrameQuality
impl Debug for FrameQuality
impl Eq for FrameQuality
Source§impl JsonSchema for FrameQuality
impl JsonSchema for FrameQuality
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl Ord for FrameQuality
impl Ord for FrameQuality
Source§fn cmp(&self, other: &FrameQuality) -> Ordering
fn cmp(&self, other: &FrameQuality) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FrameQuality
impl PartialEq for FrameQuality
Source§fn eq(&self, other: &FrameQuality) -> bool
fn eq(&self, other: &FrameQuality) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FrameQuality
impl PartialOrd for FrameQuality
impl StructuralPartialEq for FrameQuality
Auto Trait Implementations§
impl Freeze for FrameQuality
impl RefUnwindSafe for FrameQuality
impl Send for FrameQuality
impl Sync for FrameQuality
impl Unpin for FrameQuality
impl UnsafeUnpin for FrameQuality
impl UnwindSafe for FrameQuality
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