pub struct Planes16<'a> { /* private fields */ }Expand description
10/12-bit pixel plane accessor
Implementations§
Source§impl<'a> Planes16<'a>
impl<'a> Planes16<'a>
Sourcepub fn y(&self) -> PlaneView16<'a>
pub fn y(&self) -> PlaneView16<'a>
Y (luma) plane as a 2D strided view
Sourcepub fn u(&self) -> Option<PlaneView16<'a>>
pub fn u(&self) -> Option<PlaneView16<'a>>
U (chroma) plane, if present
Sourcepub fn v(&self) -> Option<PlaneView16<'a>>
pub fn v(&self) -> Option<PlaneView16<'a>>
V (chroma) plane, if present
Auto Trait Implementations§
impl<'a> Freeze for Planes16<'a>
impl<'a> !RefUnwindSafe for Planes16<'a>
impl<'a> Send for Planes16<'a>
impl<'a> Sync for Planes16<'a>
impl<'a> Unpin for Planes16<'a>
impl<'a> UnsafeUnpin for Planes16<'a>
impl<'a> !UnwindSafe for Planes16<'a>
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