#[repr(C)]pub struct VmafPicture {
pub pix_fmt: VmafPixelFormat,
pub bpc: c_uint,
pub w: [c_uint; 3],
pub h: [c_uint; 3],
pub stride: [isize; 3],
pub data: [*mut c_void; 3],
pub ref_: *mut VmafRef,
pub priv_: *mut c_void,
}Fields§
§pix_fmt: VmafPixelFormat§bpc: c_uint§w: [c_uint; 3]§h: [c_uint; 3]§stride: [isize; 3]§data: [*mut c_void; 3]§ref_: *mut VmafRef§priv_: *mut c_voidTrait Implementations§
Source§impl Clone for VmafPicture
impl Clone for VmafPicture
Source§fn clone(&self) -> VmafPicture
fn clone(&self) -> VmafPicture
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VmafPicture
Auto Trait Implementations§
impl !Send for VmafPicture
impl !Sync for VmafPicture
impl Freeze for VmafPicture
impl RefUnwindSafe for VmafPicture
impl Unpin for VmafPicture
impl UnsafeUnpin for VmafPicture
impl UnwindSafe for VmafPicture
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