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

Source§

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

Implementors§