pub trait TablePollableExt {
    // Required methods
    fn push_host_pollable(&mut self, p: HostPollable) -> Result<u32, TableError>;
    fn get_host_pollable_mut(
        &mut self,
        fd: u32
    ) -> Result<&mut HostPollable, TableError>;
    fn delete_host_pollable(
        &mut self,
        fd: u32
    ) -> Result<HostPollable, TableError>;
}

Required Methods§

Implementors§