pub enum RungStatus {
Pending,
Running,
Finalizing,
Completed,
Failed,
}Expand description
Lifecycle status of a single rung (one rendition of the ABR ladder).
Variants§
Pending
Queued; no frames processed yet.
Running
Actively decoding + scaling + encoding frames.
Finalizing
Finalizing the container / writing playlists.
Completed
Done — percent == 100.
Failed
Errored out — see RungProgress::message.
Trait Implementations§
Source§impl Clone for RungStatus
impl Clone for RungStatus
Source§fn clone(&self) -> RungStatus
fn clone(&self) -> RungStatus
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 RungStatus
Source§impl Debug for RungStatus
impl Debug for RungStatus
impl Eq for RungStatus
Source§impl PartialEq for RungStatus
impl PartialEq for RungStatus
Source§fn eq(&self, other: &RungStatus) -> bool
fn eq(&self, other: &RungStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RungStatus
Auto Trait Implementations§
impl Freeze for RungStatus
impl RefUnwindSafe for RungStatus
impl Send for RungStatus
impl Sync for RungStatus
impl Unpin for RungStatus
impl UnsafeUnpin for RungStatus
impl UnwindSafe for RungStatus
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