pub enum AspectRatioInfo {
Predefined(AspectRatioIdc),
ExtendedSar {
sar_width: u16,
sar_height: u16,
},
}
Expand description
Specifies the value of the sample aspect ratio of the luma samples.
Variants§
Trait Implementations§
Source§impl Clone for AspectRatioInfo
impl Clone for AspectRatioInfo
Source§fn clone(&self) -> AspectRatioInfo
fn clone(&self) -> AspectRatioInfo
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 AspectRatioInfo
impl Debug for AspectRatioInfo
Source§impl PartialEq for AspectRatioInfo
impl PartialEq for AspectRatioInfo
impl StructuralPartialEq for AspectRatioInfo
Auto Trait Implementations§
impl Freeze for AspectRatioInfo
impl RefUnwindSafe for AspectRatioInfo
impl Send for AspectRatioInfo
impl Sync for AspectRatioInfo
impl Unpin for AspectRatioInfo
impl UnwindSafe for AspectRatioInfo
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