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