pub trait BufferExt<T> {
    fn detach(txrx: Self) -> (MappedFile<T>, MappedFile<T>);
}

Required Methods

Implementations on Foreign Types

Detach a mapped dual buffer 2-tuple into regular mapped inner types.

Implementors