pub enum VideoChannelSpecifier {
Stereo,
Mono,
}Expand description
Corresponds to the “Video Channel Specifier” within the #EXT-X-STREAM-INF:REQ-VIDEO-LAYOUT
attribute.
See StreamInf for a link to the HLS documentation for this attribute.
Variants§
Stereo
Indicates that both left and right eye images are present (stereoscopic).
Mono
Indicates that a single image is present (monoscopic).
Trait Implementations§
Source§impl Clone for VideoChannelSpecifier
impl Clone for VideoChannelSpecifier
Source§fn clone(&self) -> VideoChannelSpecifier
fn clone(&self) -> VideoChannelSpecifier
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 VideoChannelSpecifier
impl Debug for VideoChannelSpecifier
Source§impl Display for VideoChannelSpecifier
impl Display for VideoChannelSpecifier
Source§impl From<VideoChannelSpecifier> for Cow<'_, str>
impl From<VideoChannelSpecifier> for Cow<'_, str>
Source§fn from(value: VideoChannelSpecifier) -> Self
fn from(value: VideoChannelSpecifier) -> Self
Converts to this type from the input type.
Source§impl From<VideoChannelSpecifier> for EnumeratedString<'_, VideoChannelSpecifier>
impl From<VideoChannelSpecifier> for EnumeratedString<'_, VideoChannelSpecifier>
Source§fn from(value: VideoChannelSpecifier) -> Self
fn from(value: VideoChannelSpecifier) -> Self
Converts to this type from the input type.
Source§impl PartialEq for VideoChannelSpecifier
impl PartialEq for VideoChannelSpecifier
Source§impl<'a> TryFrom<&'a str> for VideoChannelSpecifier
impl<'a> TryFrom<&'a str> for VideoChannelSpecifier
impl Copy for VideoChannelSpecifier
impl StructuralPartialEq for VideoChannelSpecifier
Auto Trait Implementations§
impl Freeze for VideoChannelSpecifier
impl RefUnwindSafe for VideoChannelSpecifier
impl Send for VideoChannelSpecifier
impl Sync for VideoChannelSpecifier
impl Unpin for VideoChannelSpecifier
impl UnsafeUnpin for VideoChannelSpecifier
impl UnwindSafe for VideoChannelSpecifier
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