Struct dash_mpd::ProducerReferenceTime
source · pub struct ProducerReferenceTime {
pub id: Option<String>,
pub inband: Option<bool>,
pub presentationTime: Option<u64>,
pub prtType: Option<String>,
pub wallClockTime: Option<XsDatetime>,
pub UTCTiming: Vec<UTCTiming>,
}
Expand description
Specifies wall‐clock times at which media fragments were produced, to help clients consume the fragments at the same rate at which they were produced. Used by the low-latency streaming extensions to DASH.
Fields§
§id: Option<String>
§inband: Option<bool>
§presentationTime: Option<u64>
§prtType: Option<String>
§wallClockTime: Option<XsDatetime>
§UTCTiming: Vec<UTCTiming>
Trait Implementations§
source§impl Clone for ProducerReferenceTime
impl Clone for ProducerReferenceTime
source§fn clone(&self) -> ProducerReferenceTime
fn clone(&self) -> ProducerReferenceTime
Returns a copy 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 ProducerReferenceTime
impl Debug for ProducerReferenceTime
source§impl Default for ProducerReferenceTime
impl Default for ProducerReferenceTime
source§fn default() -> ProducerReferenceTime
fn default() -> ProducerReferenceTime
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ProducerReferenceTimewhere
ProducerReferenceTime: Default,
impl<'de> Deserialize<'de> for ProducerReferenceTimewhere ProducerReferenceTime: Default,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ProducerReferenceTime
impl Send for ProducerReferenceTime
impl Sync for ProducerReferenceTime
impl Unpin for ProducerReferenceTime
impl UnwindSafe for ProducerReferenceTime
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