pub enum FrameCount {
Finite(usize),
Unknown,
}Expand description
Frame-count state known for graph clip.
Variants§
Finite(usize)
Known finite number of frames.
Unknown
Unknown or infinite count. Unsupported in Phase 1.
Trait Implementations§
Source§impl Clone for FrameCount
impl Clone for FrameCount
Source§fn clone(&self) -> FrameCount
fn clone(&self) -> FrameCount
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 FrameCount
impl Debug for FrameCount
Source§impl PartialEq for FrameCount
impl PartialEq for FrameCount
Source§fn eq(&self, other: &FrameCount) -> bool
fn eq(&self, other: &FrameCount) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FrameCount
impl Eq for FrameCount
impl StructuralPartialEq for FrameCount
Auto Trait Implementations§
impl Freeze for FrameCount
impl RefUnwindSafe for FrameCount
impl Send for FrameCount
impl Sync for FrameCount
impl Unpin for FrameCount
impl UnsafeUnpin for FrameCount
impl UnwindSafe for FrameCount
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