IntoBuffers

Trait IntoBuffers 

Source
pub trait IntoBuffers<R, S>{
    // 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§

Source

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.
Source§

fn into_buffers(self, buffer_sizes: BufferSizes) -> (R, S)

Implementors§