pub trait AsBufferPass<'a> {
// Required method
fn as_buffer_pass(&'a self) -> BufferPass<'a>;
}Expand description
Trait used to create Passing BufferPass from their Structs.
Required Methods§
Sourcefn as_buffer_pass(&'a self) -> BufferPass<'a>
fn as_buffer_pass(&'a self) -> BufferPass<'a>
Creates a BufferPass from the Holding Object.