pub trait Repository<E>:
RepositoryAccess<Error = E>
+ RepositoryTransaction<Error = E>
+ Send{ }Expand description
A Repository helps interacting with the underlying storage backend.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".