Skip to main content

Read

Trait Read 

Source
pub trait Read<'doc>: Object<'doc> + Sized {
    // Provided method
    fn read(&'doc self, query: &Query) -> Result<Option<&'doc Self>> { ... }
}

Provided Methods§

Source

fn read(&'doc self, query: &Query) -> Result<Option<&'doc Self>>

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§

Source§

impl<'doc> Read<'doc> for Value

Available on crate feature backend_serde_json only.
Source§

impl<'doc> Read<'doc> for Value

Available on crate feature backend_toml only.

Implementors§