pub trait BufferPoolTraitConst {
    // Required method
    fn as_raw_BufferPool(&self) -> *const c_void;

    // Provided method
    fn get_allocator(&self) -> Result<Ptr<dyn GpuMat_Allocator>> { ... }
}
Expand description

Constant methods for core::BufferPool

Required Methods§

Provided Methods§

source

fn get_allocator(&self) -> Result<Ptr<dyn GpuMat_Allocator>>

Returns the allocator associated with the stream.

Implementors§