pub enum PresentationMode {
Vod,
Event,
Live,
}Expand description
How the presentation should be signalled in DASH/HLS manifests.
Variants§
Vod
Finished VOD asset (type=static, #EXT-X-PLAYLIST-TYPE:VOD + ENDLIST).
Event
Growing event (type=dynamic without a sliding window, EVENT playlist).
Live
Live sliding window (type=dynamic, no ENDLIST, #EXT-X-MEDIA-SEQUENCE).
Trait Implementations§
Source§impl Clone for PresentationMode
impl Clone for PresentationMode
Source§fn clone(&self) -> PresentationMode
fn clone(&self) -> PresentationMode
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 moreimpl Copy for PresentationMode
Source§impl Debug for PresentationMode
impl Debug for PresentationMode
Source§impl Default for PresentationMode
impl Default for PresentationMode
Source§fn default() -> PresentationMode
fn default() -> PresentationMode
Returns the “default value” for a type. Read more
impl Eq for PresentationMode
Source§impl PartialEq for PresentationMode
impl PartialEq for PresentationMode
impl StructuralPartialEq for PresentationMode
Auto Trait Implementations§
impl Freeze for PresentationMode
impl RefUnwindSafe for PresentationMode
impl Send for PresentationMode
impl Sync for PresentationMode
impl Unpin for PresentationMode
impl UnsafeUnpin for PresentationMode
impl UnwindSafe for PresentationMode
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