pub trait ConnectionLike: ReadOperations + WriteOperations + Send + Sync { }
Expand description

Marker trait required by the query core executor to abstract connections and transactions into something that can is capable of writing to or reading from the database.

Implementors§