Skip to main content

Readable

Trait Readable 

Source
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§

Source

fn inner(&self) -> &impl Readable

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.

Implementors§