pub trait Pool {
    type Data: 'static;
}
Expand description

Pool of Arc pointers

Required Associated Types

The data behind the Arc pointer

Implementors