pub struct Stats {
pub max_decoder_count: usize,
pub max_encode_buffer_size: usize,
pub decoders_created: usize,
pub frames_written: usize,
pub frames_decoded: usize,
pub runtime: Duration,
}
Expand description
Stats from a run of a vidformer spec
Fields§
§max_decoder_count: usize
§max_encode_buffer_size: usize
§decoders_created: usize
§frames_written: usize
§frames_decoded: usize
§runtime: Duration
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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