#[repr(C)]pub struct x264_image_t {
pub i_csp: c_int,
pub i_plane: c_int,
pub i_stride: [c_int; 4],
pub plane: [*mut u8; 4],
}Fields§
§i_csp: c_int§i_plane: c_int§i_stride: [c_int; 4]§plane: [*mut u8; 4]Trait Implementations§
Source§impl Clone for x264_image_t
impl Clone for x264_image_t
Source§fn clone(&self) -> x264_image_t
fn clone(&self) -> x264_image_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for x264_image_t
impl Debug for x264_image_t
impl Copy for x264_image_t
Auto Trait Implementations§
impl Freeze for x264_image_t
impl RefUnwindSafe for x264_image_t
impl !Send for x264_image_t
impl !Sync for x264_image_t
impl Unpin for x264_image_t
impl UnwindSafe for x264_image_t
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