pub trait PushSrcImplExt: PushSrcImpl {
// Provided methods
fn parent_fill(
&self,
buffer: &mut BufferRef,
) -> Result<FlowSuccess, FlowError> { ... }
fn parent_alloc(&self) -> Result<Buffer, FlowError> { ... }
fn parent_create(
&self,
buffer: Option<&mut BufferRef>,
) -> Result<CreateSuccess, FlowError> { ... }
}
Provided Methods§
fn parent_fill(&self, buffer: &mut BufferRef) -> Result<FlowSuccess, FlowError>
fn parent_alloc(&self) -> Result<Buffer, FlowError>
fn parent_create( &self, buffer: Option<&mut BufferRef>, ) -> Result<CreateSuccess, FlowError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.