pub struct CleanDirRefWr<'a, 'vfs, T: ?Sized + 'a, Vfs: 'vfs>(/* private fields */)
where
'vfs: 'a;Trait Implementations§
Source§impl<'a, 'vfs, T, Vfs: WriteSupportingVfs<'vfs>> WriteTo<'vfs, Vfs> for CleanDirRefWr<'a, 'vfs, T, Vfs>
impl<'a, 'vfs, T, Vfs: WriteSupportingVfs<'vfs>> WriteTo<'vfs, Vfs> for CleanDirRefWr<'a, 'vfs, T, Vfs>
Source§impl<'a, T, Vfs: WriteSupportingVfsAsync + 'static> WriteToAsync<'a, Vfs> for CleanDirRefWr<'a, 'a, T, Vfs>where
T: WriteToAsyncRef<'a, Vfs> + Send + Sync + 'static,
for<'f> <Vfs as VfsAsync>::ExistsFuture<'f>: Future<Output = VfsResult<bool, Vfs>> + Unpin + 'f,
for<'f> <Vfs as WriteSupportingVfsAsync>::RemoveDirAllFuture<'f>: Future<Output = VfsResult<(), Vfs>> + Unpin + 'f,
Available on crate feature async only.
impl<'a, T, Vfs: WriteSupportingVfsAsync + 'static> WriteToAsync<'a, Vfs> for CleanDirRefWr<'a, 'a, T, Vfs>where
T: WriteToAsyncRef<'a, Vfs> + Send + Sync + 'static,
for<'f> <Vfs as VfsAsync>::ExistsFuture<'f>: Future<Output = VfsResult<bool, Vfs>> + Unpin + 'f,
for<'f> <Vfs as WriteSupportingVfsAsync>::RemoveDirAllFuture<'f>: Future<Output = VfsResult<(), Vfs>> + Unpin + 'f,
Available on crate feature
async only.Auto Trait Implementations§
impl<'a, 'vfs, T, Vfs> Freeze for CleanDirRefWr<'a, 'vfs, T, Vfs>where
T: ?Sized,
impl<'a, 'vfs, T, Vfs> RefUnwindSafe for CleanDirRefWr<'a, 'vfs, T, Vfs>
impl<'a, 'vfs, T, Vfs> Send for CleanDirRefWr<'a, 'vfs, T, Vfs>
impl<'a, 'vfs, T, Vfs> Sync for CleanDirRefWr<'a, 'vfs, T, Vfs>
impl<'a, 'vfs, T, Vfs> Unpin for CleanDirRefWr<'a, 'vfs, T, Vfs>where
T: ?Sized,
impl<'a, 'vfs, T, Vfs> UnwindSafe for CleanDirRefWr<'a, 'vfs, T, Vfs>
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
Source§impl<T> DirStructureItem for T
impl<T> DirStructureItem for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more