pub trait Read<'doc>: Object<'doc> + Sized {
// Provided method
fn read(&'doc self, query: &Query) -> Result<Option<&'doc Self>> { ... }
}Provided 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.
Implementations on Foreign Types§
impl<'doc> Read<'doc> for Value
Available on crate feature
backend_serde_json only.impl<'doc> Read<'doc> for Value
Available on crate feature
backend_toml only.