pub struct PlanarYCbCrMut<'a> {
pub y: &'a mut [u8],
pub cb: &'a mut [u8],
pub cr: &'a mut [u8],
}Expand description
Planar YCbCr output for Jpeg::decode.
Fields§
§y: &'a mut [u8]Luma plane.
cb: &'a mut [u8]Cb plane (may be empty for grayscale).
cr: &'a mut [u8]Cr plane (may be empty for grayscale).
Auto Trait Implementations§
impl<'a> Freeze for PlanarYCbCrMut<'a>
impl<'a> RefUnwindSafe for PlanarYCbCrMut<'a>
impl<'a> Send for PlanarYCbCrMut<'a>
impl<'a> Sync for PlanarYCbCrMut<'a>
impl<'a> Unpin for PlanarYCbCrMut<'a>
impl<'a> !UnwindSafe for PlanarYCbCrMut<'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