pub enum ClipFormat {
Fixed(FormatDescriptor),
Variable,
}Expand description
Format state known for graph clip.
Variants§
Fixed(FormatDescriptor)
Clip always uses one concrete format.
Variable
Clip can vary format by frame. Unsupported in Phase 1.
Trait Implementations§
Source§impl Clone for ClipFormat
impl Clone for ClipFormat
Source§fn clone(&self) -> ClipFormat
fn clone(&self) -> ClipFormat
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 ClipFormat
impl Debug for ClipFormat
Source§impl PartialEq for ClipFormat
impl PartialEq for ClipFormat
Source§fn eq(&self, other: &ClipFormat) -> bool
fn eq(&self, other: &ClipFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ClipFormat
impl StructuralPartialEq for ClipFormat
Auto Trait Implementations§
impl Freeze for ClipFormat
impl RefUnwindSafe for ClipFormat
impl Send for ClipFormat
impl Sync for ClipFormat
impl Unpin for ClipFormat
impl UnsafeUnpin for ClipFormat
impl UnwindSafe for ClipFormat
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