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§
fn entries<P: AsRef<Path>>(&self, path: P) -> Result<Entries<'_>>
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.