pub struct RawVideoFrame {
pub data: Vec<u8>,
pub timestamp: i64,
pub dmabuf_fd: Option<RawFd>,
pub stride: i32,
pub offset: u32,
pub size: u32,
pub modifier: u64,
}
Fields§
§data: Vec<u8>
§timestamp: i64
§dmabuf_fd: Option<RawFd>
§stride: i32
§offset: u32
§size: u32
§modifier: u64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawVideoFrame
impl RefUnwindSafe for RawVideoFrame
impl Send for RawVideoFrame
impl Sync for RawVideoFrame
impl Unpin for RawVideoFrame
impl UnwindSafe for RawVideoFrame
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