NewQueue

Trait NewQueue 

Source
pub trait NewQueue<I, M>: NewQueue<I, M> {
    type Pool;
}
Expand description

A constructor for queue

This trait is currently sealed, we will unseal it once it stabilized

Required Associated Types§

Source

type Pool

Connection pool instance type

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<I, M, T: NewQueue<I, M>> NewQueue<I, M> for T

Source§

type Pool = <T as NewQueue<I, M>>::Pool