#[repr(C)]pub struct drmtap_frame_info {
pub data: *mut c_void,
pub dma_buf_fd: c_int,
pub width: u32,
pub height: u32,
pub stride: u32,
pub format: u32,
pub modifier: u64,
pub fb_id: u32,
pub _priv: *mut c_void,
}Expand description
Captured frame data
Fields§
§data: *mut c_void§dma_buf_fd: c_int§width: u32§height: u32§stride: u32§format: u32§modifier: u64§fb_id: u32§_priv: *mut c_voidAuto Trait Implementations§
impl Freeze for drmtap_frame_info
impl RefUnwindSafe for drmtap_frame_info
impl !Send for drmtap_frame_info
impl !Sync for drmtap_frame_info
impl Unpin for drmtap_frame_info
impl UnsafeUnpin for drmtap_frame_info
impl UnwindSafe for drmtap_frame_info
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