pub trait Recycle<T> {
    fn new_element(&self) -> T;
    fn recycle(&self, element: &mut T);
}
Expand description

A policy defining how pooled elements of type T are reused.

A recycling policy provides two operations: Recycle::new_element, which defines how new elements of type T are initially constructed, and Recycle::recycle, which, given an &mut T, prepares that element for reuse.

This trait is intended to allow defining custom policies to reuse values that are expensive to create or destroy. If a type T owns a large memory allocation or other reuseable resource (such as a file descriptor, network connection, worker thread, et cetera), the recycle operation can clear any data associated with a particular use of that value while retaining its memory allocation or other resources. For example, the WithCapacity recycling policy clears standard library collections such as String and Vec in place, retaining their allocated heap capacity, so that future uses of those collections do not need to reallocate.

Required Methods

Returns a new instance of type T.

This method will be called to populate the pool with the initial set of elements. It may also be called if an element is permanently removed from the pool and will not be returned.

Prepares element element for reuse.

Typically, this clears any data stored in element in place, but retains any previous heap allocations owned by element so that they can be used again.

This method is called when a T value is returned to the pool that owns it.

Implementations on Foreign Types

Implementors