pub enum FrameFormat {
Show 15 variants
Invalid,
Progressive,
TopField,
BottomField,
TopBottom,
BottomTop,
TopBottomTop,
BottomTopBotttom,
FrameDouble,
FrameTriple,
TopPairedWithPrevious,
BottomPairedWithPrevious,
TopPairedWithNext,
BottomPairedWithNext,
Unknown(i32),
}Expand description
Frame format.
Variants§
Invalid
Invalid.
Progressive
Progressive.
TopField
Top-field.
BottomField
Bottom-field.
TopBottom
Top-bottom.
BottomTop
Bottom-top.
TopBottomTop
Top-bottom-top.
BottomTopBotttom
Bottom-top-botttom.
FrameDouble
Frame-double.
FrameTriple
Frame-triple.
TopPairedWithPrevious
Top paired with previous.
BottomPairedWithPrevious
Bottom paired with previous.
TopPairedWithNext
Top paired with next.
BottomPairedWithNext
Bottom paired with next.
Unknown(i32)
Unknown.
Trait Implementations§
Source§impl Debug for FrameFormat
impl Debug for FrameFormat
Source§impl PartialEq for FrameFormat
impl PartialEq for FrameFormat
impl StructuralPartialEq for FrameFormat
Auto Trait Implementations§
impl Freeze for FrameFormat
impl RefUnwindSafe for FrameFormat
impl Send for FrameFormat
impl Sync for FrameFormat
impl Unpin for FrameFormat
impl UnwindSafe for FrameFormat
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