pub trait PushSrcImplExt: Sealed + ObjectSubclass {
    // 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§

Object Safety§

This trait is not object safe.

Implementors§