pub enum ChromaSampling {
Cs420,
Cs422,
Cs444,
Monochrome,
}Expand description
Chroma subsampling format
Variants§
Cs420
4:2:0 = 2x2 pixels of luma per 1 pixel of chroma
Cs422
4:2:2 = Horizontally subsampled
Cs444
4:2:4 = Not subsampled (chroma and luma are 1:1)
Monochrome
4:0:0 Only luma (grayscale)
Trait Implementations§
source§impl Clone for ChromaSampling
impl Clone for ChromaSampling
source§fn clone(&self) -> ChromaSampling
fn clone(&self) -> ChromaSampling
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 ChromaSampling
impl Debug for ChromaSampling
source§impl PartialEq for ChromaSampling
impl PartialEq for ChromaSampling
impl Copy for ChromaSampling
impl Eq for ChromaSampling
impl StructuralPartialEq for ChromaSampling
Auto Trait Implementations§
impl Freeze for ChromaSampling
impl RefUnwindSafe for ChromaSampling
impl Send for ChromaSampling
impl Sync for ChromaSampling
impl Unpin for ChromaSampling
impl UnwindSafe for ChromaSampling
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)