pub struct VideoProgress {
pub current_frame: u32,
pub total_frames: u32,
pub stage: String,
pub percent: f64,
}Fields§
§current_frame: u32§total_frames: u32§stage: String§percent: f64Implementations§
Trait Implementations§
Source§impl Clone for VideoProgress
impl Clone for VideoProgress
Source§fn clone(&self) -> VideoProgress
fn clone(&self) -> VideoProgress
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VideoProgress
impl RefUnwindSafe for VideoProgress
impl Send for VideoProgress
impl Sync for VideoProgress
impl Unpin for VideoProgress
impl UnwindSafe for VideoProgress
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