pub struct IFrameStream {
pub stream_info: StreamInf,
pub video_group_id: Option<String>,
pub uri: String,
}Expand description
Identifies a MediaPlaylist containing the I-frames of a multimedia
presentation.
Fields§
§stream_info: StreamInfThe metadata for this stream.
video_group_id: Option<String>The group id of the video RenditionGroup that should be used when
playing the presentation.
uri: StringThe URI that identifies the I-frame MediaPlaylist file.
Trait Implementations§
Source§impl Clone for IFrameStream
impl Clone for IFrameStream
Source§fn clone(&self) -> IFrameStream
fn clone(&self) -> IFrameStream
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IFrameStream
impl Debug for IFrameStream
Source§impl PartialEq for IFrameStream
impl PartialEq for IFrameStream
Source§fn eq(&self, other: &IFrameStream) -> bool
fn eq(&self, other: &IFrameStream) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IFrameStream
Auto Trait Implementations§
impl Freeze for IFrameStream
impl RefUnwindSafe for IFrameStream
impl Send for IFrameStream
impl Sync for IFrameStream
impl Unpin for IFrameStream
impl UnsafeUnpin for IFrameStream
impl UnwindSafe for IFrameStream
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