[][src]Struct webp_sys::WebPYUVABuffer

#[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: usize

Trait Implementations

impl Copy for WebPYUVABuffer[src]

impl Clone for WebPYUVABuffer[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for WebPYUVABuffer[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]