pub trait PooledResourceImpl {
// Required method
fn reset(&mut self) -> RafxResult<()>;
}Expand description
Implement to customize how PoolAllocator resets and destroys pools
Required Methods§
fn reset(&mut self) -> RafxResult<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".