pub enum SubsetSpsExtension {
Svc(SvcSpsExtension),
Mvc {
ext: MvcSpsExtension,
mvc_vui_parameters: Option<MvcVuiParametersExtension>,
},
Mvcd,
}Expand description
Profile-dependent extension data within a subset SPS.
Variants§
Svc(SvcSpsExtension)
Mvc
Mvcd
MVCD extension (profiles 135/138/139). Parsing not implemented - fields not read.
Trait Implementations§
Source§impl Clone for SubsetSpsExtension
impl Clone for SubsetSpsExtension
Source§fn clone(&self) -> SubsetSpsExtension
fn clone(&self) -> SubsetSpsExtension
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 SubsetSpsExtension
impl Debug for SubsetSpsExtension
impl Eq for SubsetSpsExtension
Source§impl PartialEq for SubsetSpsExtension
impl PartialEq for SubsetSpsExtension
impl StructuralPartialEq for SubsetSpsExtension
Auto Trait Implementations§
impl Freeze for SubsetSpsExtension
impl RefUnwindSafe for SubsetSpsExtension
impl Send for SubsetSpsExtension
impl Sync for SubsetSpsExtension
impl Unpin for SubsetSpsExtension
impl UnsafeUnpin for SubsetSpsExtension
impl UnwindSafe for SubsetSpsExtension
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