Trait StoreExt

Source
pub trait StoreExt: Store {
    // Provided methods
    fn entries<P: AsRef<Path>>(&self, path: P) -> Result<Entries<'_>> { ... }
    fn open<P: AsRef<Path>>(&self, path: P) -> Result<Self::File> { ... }
}
Expand description

Convenient methods on top of Store.

Provided Methods§

Source

fn entries<P: AsRef<Path>>(&self, path: P) -> Result<Entries<'_>>

Source

fn open<P: AsRef<Path>>(&self, path: P) -> Result<Self::File>

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§

Source§

impl<T: Store> StoreExt for T