pub trait BufferExt<T> {
// Required method
fn detach(txrx: Self) -> (MappedFile<T>, MappedFile<T>);
}
Required Methods§
fn detach(txrx: Self) -> (MappedFile<T>, MappedFile<T>)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl<B, T> BufferExt<T> for (MappedFile<B>, MappedFile<B>)
impl<B, T> BufferExt<T> for (MappedFile<B>, MappedFile<B>)
Source§fn detach((itx, irx): Self) -> (MappedFile<T>, MappedFile<T>)
fn detach((itx, irx): Self) -> (MappedFile<T>, MappedFile<T>)
Detach a mapped dual buffer 2-tuple into regular mapped inner types.