pub struct DecodedYuv {
pub width: u32,
pub height: u32,
pub y: Vec<u8>,
pub u: Vec<u8>,
pub v: Vec<u8>,
}Fields§
§width: u32§height: u32§y: Vec<u8>§u: Vec<u8>§v: Vec<u8>Auto Trait Implementations§
impl Freeze for DecodedYuv
impl RefUnwindSafe for DecodedYuv
impl Send for DecodedYuv
impl Sync for DecodedYuv
impl Unpin for DecodedYuv
impl UnsafeUnpin for DecodedYuv
impl UnwindSafe for DecodedYuv
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