pub trait IntoConnection {
type Connection: ConnectionExt;
// Required method
fn into_connection(self) -> Self::Connection;
}pub trait IntoConnection {
type Connection: ConnectionExt;
// Required method
fn into_connection(self) -> Self::Connection;
}