#[repr(u32)]pub enum AVStereo3DView {
AV_STEREO3D_VIEW_PACKED = 0,
AV_STEREO3D_VIEW_LEFT = 1,
AV_STEREO3D_VIEW_RIGHT = 2,
}
Expand description
List of possible view types.
Variants§
AV_STEREO3D_VIEW_PACKED = 0
Frame contains two packed views.
AV_STEREO3D_VIEW_LEFT = 1
Frame contains only the left view.
AV_STEREO3D_VIEW_RIGHT = 2
Frame contains only the right view.
Trait Implementations§
Source§impl Clone for AVStereo3DView
impl Clone for AVStereo3DView
Source§fn clone(&self) -> AVStereo3DView
fn clone(&self) -> AVStereo3DView
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 AVStereo3DView
impl Debug for AVStereo3DView
Source§impl Hash for AVStereo3DView
impl Hash for AVStereo3DView
Source§impl PartialEq for AVStereo3DView
impl PartialEq for AVStereo3DView
impl Copy for AVStereo3DView
impl Eq for AVStereo3DView
impl StructuralPartialEq for AVStereo3DView
Auto Trait Implementations§
impl Freeze for AVStereo3DView
impl RefUnwindSafe for AVStereo3DView
impl Send for AVStereo3DView
impl Sync for AVStereo3DView
impl Unpin for AVStereo3DView
impl UnwindSafe for AVStereo3DView
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