pub trait BufferData: 'static {
// Required methods
fn buf_ptr(&self) -> *mut c_void;
fn stride(&self) -> usize;
fn buf_len(&self) -> usize;
}Expand description
A buffer allocated in Linear memory.
pub trait BufferData: 'static {
// Required methods
fn buf_ptr(&self) -> *mut c_void;
fn stride(&self) -> usize;
fn buf_len(&self) -> usize;
}A buffer allocated in Linear memory.