#[repr(C)]pub struct Wmv2FrameView {
pub width: u32,
pub height: u32,
pub y_ptr: *const u8,
pub y_len: usize,
pub y_stride: usize,
pub cb_ptr: *const u8,
pub cb_len: usize,
pub cb_stride: usize,
pub cr_ptr: *const u8,
pub cr_len: usize,
pub cr_stride: usize,
}Fields§
§width: u32§height: u32§y_ptr: *const u8§y_len: usize§y_stride: usize§cb_ptr: *const u8§cb_len: usize§cb_stride: usize§cr_ptr: *const u8§cr_len: usize§cr_stride: usizeAuto Trait Implementations§
impl Freeze for Wmv2FrameView
impl RefUnwindSafe for Wmv2FrameView
impl !Send for Wmv2FrameView
impl !Sync for Wmv2FrameView
impl Unpin for Wmv2FrameView
impl UnsafeUnpin for Wmv2FrameView
impl UnwindSafe for Wmv2FrameView
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