pub trait Readable {
// Required method
fn inner(&self) -> &impl Readable;
}Expand description
To be used when your function needs to read data from the database.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.