Struct libwebp_sys::WebPYUVABuffer
source · [−]#[repr(C)]pub struct WebPYUVABuffer {
pub y: *mut u8,
pub u: *mut u8,
pub v: *mut u8,
pub a: *mut u8,
pub y_stride: c_int,
pub u_stride: c_int,
pub v_stride: c_int,
pub a_stride: c_int,
pub y_size: usize,
pub u_size: usize,
pub v_size: usize,
pub a_size: usize,
}Fields
y: *mut u8u: *mut u8v: *mut u8a: *mut u8y_stride: c_intu_stride: c_intv_stride: c_inta_stride: c_inty_size: usizeu_size: usizev_size: usizea_size: usizeTrait Implementations
sourceimpl Clone for WebPYUVABuffer
impl Clone for WebPYUVABuffer
sourcefn clone(&self) -> WebPYUVABuffer
fn clone(&self) -> WebPYUVABuffer
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for WebPYUVABuffer
impl Debug for WebPYUVABuffer
impl Copy for WebPYUVABuffer
Auto Trait Implementations
impl RefUnwindSafe for WebPYUVABuffer
impl !Send for WebPYUVABuffer
impl !Sync for WebPYUVABuffer
impl Unpin for WebPYUVABuffer
impl UnwindSafe for WebPYUVABuffer
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more