pub trait BufferMap: 'static + Debug + Send + Sync {
    fn get(&self, id: u64, channel: u64) -> Buffer<'_>;
}

Required Methods

Implementations on Foreign Types

Implementors