Trait ShmFileHandle

Source
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.

Required Methods§

Source

fn get_mut_ptr(&mut self) -> *mut c_void

Source

fn get_size(&self) -> usize

Implementations on Foreign Types§

Source§

impl ShmFileHandle for Shmem

Implementors§