#[repr(u32)]pub enum AVChromaLocation {
AVCHROMA_LOC_UNSPECIFIED = 0,
AVCHROMA_LOC_LEFT = 1,
AVCHROMA_LOC_CENTER = 2,
AVCHROMA_LOC_TOPLEFT = 3,
AVCHROMA_LOC_TOP = 4,
AVCHROMA_LOC_BOTTOMLEFT = 5,
AVCHROMA_LOC_BOTTOM = 6,
AVCHROMA_LOC_NB = 7,
}
Variants§
AVCHROMA_LOC_UNSPECIFIED = 0
AVCHROMA_LOC_LEFT = 1
AVCHROMA_LOC_CENTER = 2
AVCHROMA_LOC_TOPLEFT = 3
AVCHROMA_LOC_TOP = 4
AVCHROMA_LOC_BOTTOMLEFT = 5
AVCHROMA_LOC_BOTTOM = 6
AVCHROMA_LOC_NB = 7
Trait Implementations§
Source§impl Clone for AVChromaLocation
impl Clone for AVChromaLocation
Source§fn clone(&self) -> AVChromaLocation
fn clone(&self) -> AVChromaLocation
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 AVChromaLocation
impl Debug for AVChromaLocation
Source§impl Hash for AVChromaLocation
impl Hash for AVChromaLocation
Source§impl PartialEq for AVChromaLocation
impl PartialEq for AVChromaLocation
impl Copy for AVChromaLocation
impl Eq for AVChromaLocation
impl StructuralPartialEq for AVChromaLocation
Auto Trait Implementations§
impl Freeze for AVChromaLocation
impl RefUnwindSafe for AVChromaLocation
impl Send for AVChromaLocation
impl Sync for AVChromaLocation
impl Unpin for AVChromaLocation
impl UnwindSafe for AVChromaLocation
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