pub struct TranscoderStats {
pub fragments_seen: AtomicU64,
pub panics: AtomicU64,
}Expand description
Per-(transcoder, rendition, broadcast, track) outcome
counters.
Fields§
§fragments_seen: AtomicU64Total fragments handed to Transcoder::on_fragment
(regardless of panic outcome).
panics: AtomicU64Count of caught panics across on_start, on_fragment,
and on_stop for this key.
Trait Implementations§
Source§impl Debug for TranscoderStats
impl Debug for TranscoderStats
Source§impl Default for TranscoderStats
impl Default for TranscoderStats
Source§fn default() -> TranscoderStats
fn default() -> TranscoderStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for TranscoderStats
impl RefUnwindSafe for TranscoderStats
impl Send for TranscoderStats
impl Sync for TranscoderStats
impl Unpin for TranscoderStats
impl UnsafeUnpin for TranscoderStats
impl UnwindSafe for TranscoderStats
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