#[repr(C)]pub struct AVProducerReferenceTime {
pub wallclock: i64,
pub flags: c_int,
}Expand description
This structure supplies correlation between a packet timestamp and a wall clock production time. The definition follows the Producer Reference Time (‘prft’) as defined in ISO/IEC 14496-12
Fields§
§wallclock: i64A UTC timestamp, in microseconds, since Unix epoch (e.g, av_gettime()).
flags: c_intTrait Implementations§
Source§impl Clone for AVProducerReferenceTime
impl Clone for AVProducerReferenceTime
Source§fn clone(&self) -> AVProducerReferenceTime
fn clone(&self) -> AVProducerReferenceTime
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 moreSource§impl Debug for AVProducerReferenceTime
impl Debug for AVProducerReferenceTime
Source§impl Default for AVProducerReferenceTime
impl Default for AVProducerReferenceTime
Source§fn default() -> AVProducerReferenceTime
fn default() -> AVProducerReferenceTime
Returns the “default value” for a type. Read more
Source§impl Hash for AVProducerReferenceTime
impl Hash for AVProducerReferenceTime
Source§impl Ord for AVProducerReferenceTime
impl Ord for AVProducerReferenceTime
Source§fn cmp(&self, other: &AVProducerReferenceTime) -> Ordering
fn cmp(&self, other: &AVProducerReferenceTime) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AVProducerReferenceTime
impl PartialEq for AVProducerReferenceTime
Source§impl PartialOrd for AVProducerReferenceTime
impl PartialOrd for AVProducerReferenceTime
impl Copy for AVProducerReferenceTime
impl Eq for AVProducerReferenceTime
impl StructuralPartialEq for AVProducerReferenceTime
Auto Trait Implementations§
impl Freeze for AVProducerReferenceTime
impl RefUnwindSafe for AVProducerReferenceTime
impl Send for AVProducerReferenceTime
impl Sync for AVProducerReferenceTime
impl Unpin for AVProducerReferenceTime
impl UnwindSafe for AVProducerReferenceTime
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