pub trait IntoBuffers<R, S>where
R: ReceiveBuffer,
S: SendBuffer,{
// Required method
fn into_buffers(self, buffer_sizes: BufferSizes) -> (R, S);
}Expand description
A conversion trait that converts the object that Bindings give us into a pair of receive and send buffers.
Required Methods§
Sourcefn into_buffers(self, buffer_sizes: BufferSizes) -> (R, S)
fn into_buffers(self, buffer_sizes: BufferSizes) -> (R, S)
Converts to receive and send buffers.
Implementations on Foreign Types§
Source§impl<R, S> IntoBuffers<R, S> for ()
Available on crate features testutils only.
impl<R, S> IntoBuffers<R, S> for ()
Available on crate features
testutils only.