pub trait KeepsakeSqlxBackend:
Debug
+ Clone
+ Copy
+ Send
+ Sync
+ 'static {
type Database: Database;
const NAME: &'static str;
}Expand description
SQLx backend supported by Keepsake.
Required Associated Constants§
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".