pub trait ShmFileHandle {
// Required methods
fn get_mut_ptr(&mut self) -> *mut c_void;
fn get_size(&self) -> usize;
}
Expand description
Trait for a handle to shared memory of some kind, through which interprocess communication can take place.