pub trait ConnectionInfo: ServiceURL {
    type Connection: R2D2Connection + 'static;

    // Provided method
    fn create_pool(
    ) -> Result<Pool<ConnectionManager<Self::Connection>>, ParseError> { ... }
}

Required Associated Types§

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§