Struct mmids_core::VideoTimestamp
source · pub struct VideoTimestamp { /* private fields */ }
Expand description
Represents timestamps relevant to video data. Contains the decoding time stamp (dts) and presentation time stamp (dts).
Implementations
sourceimpl VideoTimestamp
impl VideoTimestamp
sourcepub fn from_durations(dts: Duration, pts: Duration) -> Self
pub fn from_durations(dts: Duration, pts: Duration) -> Self
Creates a new video timestamp based on absolute dts and pts values.
sourcepub fn pts_offset(&self) -> i32
pub fn pts_offset(&self) -> i32
Gets the offset from the decoding timestamp for the pts
Trait Implementations
sourceimpl Clone for VideoTimestamp
impl Clone for VideoTimestamp
sourcefn clone(&self) -> VideoTimestamp
fn clone(&self) -> VideoTimestamp
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for VideoTimestamp
impl Debug for VideoTimestamp
sourceimpl PartialEq<VideoTimestamp> for VideoTimestamp
impl PartialEq<VideoTimestamp> for VideoTimestamp
sourcefn eq(&self, other: &VideoTimestamp) -> bool
fn eq(&self, other: &VideoTimestamp) -> bool
impl Eq for VideoTimestamp
impl StructuralEq for VideoTimestamp
impl StructuralPartialEq for VideoTimestamp
Auto Trait Implementations
impl RefUnwindSafe for VideoTimestamp
impl Send for VideoTimestamp
impl Sync for VideoTimestamp
impl Unpin for VideoTimestamp
impl UnwindSafe for VideoTimestamp
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
sourcefn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read moresourcefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read moresourcefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read moresourcefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read moresourceimpl<T> DowncastSync for Twhere
T: Any + Send + Sync,
impl<T> DowncastSync for Twhere
T: Any + Send + Sync,
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.