pub enum FlagInterlaced {
Undetermined,
Interlaced,
Progressive,
}Expand description
Specify whether the video frames in this track are interlaced or not.
Variants§
Undetermined
Unknown status. This value SHOULD be avoided.
Interlaced
Interlaced frames.
Progressive
No interlacing.
Implementations§
Trait Implementations§
Source§impl Clone for FlagInterlaced
impl Clone for FlagInterlaced
Source§fn clone(&self) -> FlagInterlaced
fn clone(&self) -> FlagInterlaced
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 FlagInterlaced
impl Debug for FlagInterlaced
Source§impl PartialEq for FlagInterlaced
impl PartialEq for FlagInterlaced
Source§impl Serialize for FlagInterlaced
impl Serialize for FlagInterlaced
impl Eq for FlagInterlaced
impl StructuralPartialEq for FlagInterlaced
Auto Trait Implementations§
impl Freeze for FlagInterlaced
impl RefUnwindSafe for FlagInterlaced
impl Send for FlagInterlaced
impl Sync for FlagInterlaced
impl Unpin for FlagInterlaced
impl UnwindSafe for FlagInterlaced
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