pub unsafe trait RutabagaMappedRegion: Send + Sync {
// Required methods
fn as_ptr(&self) -> *mut u8;
fn size(&self) -> usize;
}
Expand description
§Safety
Caller must ensure that MappedRegion’s lifetime contains the lifetime of pointer returned.