pub enum JobEvent {
Started {
rungs: usize,
},
Probed {
codec: String,
width: u32,
height: u32,
frame_rate: f64,
audio_codec: Option<String>,
},
Finished {
rungs_completed: usize,
rungs_failed: usize,
},
}Expand description
Job-level lifecycle events, independent of any single rung.
Variants§
Started
Job accepted; rungs renditions will be produced.
Probed
Source probed.
Finished
Job finished.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JobEvent
impl RefUnwindSafe for JobEvent
impl Send for JobEvent
impl Sync for JobEvent
impl Unpin for JobEvent
impl UnsafeUnpin for JobEvent
impl UnwindSafe for JobEvent
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