Skip to main content

TakeBuffer

Trait TakeBuffer 

Source
pub trait TakeBuffer {
    type Buffer;

    // Required method
    fn take_buffer(self) -> Option<Self::Buffer>;
}
Expand description

Take buffer out of an operation.

Required Associated Types§

Source

type Buffer

Type of the buffer.

Required Methods§

Source

fn take_buffer(self) -> Option<Self::Buffer>

Take buffer.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§