pub struct NoopStoreDirectory { /* private fields */ }
Expand description
Representation of a directory in the noop store.
Trait Implementations§
Source§impl Debug for NoopStoreDirectory
impl Debug for NoopStoreDirectory
Source§impl From<NoopStoreDirectory> for AnyStoreDirectory
impl From<NoopStoreDirectory> for AnyStoreDirectory
Source§fn from(value: NoopStoreDirectory) -> Self
fn from(value: NoopStoreDirectory) -> Self
Converts to this type from the input type.
Source§impl StoreDirectory for NoopStoreDirectory
impl StoreDirectory for NoopStoreDirectory
Source§type Entry = Entry<NoopStoreFile, NoopStoreDirectory>
type Entry = Entry<NoopStoreFile, NoopStoreDirectory>
Associated type for entries in the directory.
Source§type Reader = NoopStoreDirectoryReader
type Reader = NoopStoreDirectoryReader
Associated type for the reader that iterates over the directory’s
entries.
Source§async fn delete_recursive(&self) -> Result<()>
async fn delete_recursive(&self) -> Result<()>
Deletes a directory and its content
Auto Trait Implementations§
impl Freeze for NoopStoreDirectory
impl RefUnwindSafe for NoopStoreDirectory
impl Send for NoopStoreDirectory
impl Sync for NoopStoreDirectory
impl Unpin for NoopStoreDirectory
impl UnwindSafe for NoopStoreDirectory
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more