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§
Required Methods§
Sourcefn take_buffer(self) -> Option<Self::Buffer>
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".