pub struct FmtWrapperRefWr<'a, 'vfs, T: Display + ?Sized, Vfs: 'vfs>(pub &'a T, _);Expand description
Tuple Fields§
§0: &'a TTrait Implementations§
Source§impl<'a, 'vfs, T, Vfs: WriteSupportingVfs<'vfs> + 'vfs> WriteTo<'vfs, Vfs> for FmtWrapperRefWr<'a, 'vfs, T, Vfs>
impl<'a, 'vfs, T, Vfs: WriteSupportingVfs<'vfs> + 'vfs> WriteTo<'vfs, Vfs> for FmtWrapperRefWr<'a, 'vfs, T, Vfs>
Source§impl<'a, 'vfs, T, Vfs: WriteSupportingVfsAsync + 'static> WriteToAsync<'a, Vfs> for FmtWrapperRefWr<'a, 'vfs, T, Vfs>
Available on crate feature async only.
impl<'a, 'vfs, T, Vfs: WriteSupportingVfsAsync + 'static> WriteToAsync<'a, Vfs> for FmtWrapperRefWr<'a, 'vfs, T, Vfs>
Available on crate feature
async only.Source§type Future = <FileString as WriteToAsync<'a, Vfs>>::Future
type Future = <FileString as WriteToAsync<'a, Vfs>>::Future
The future type returned by the async write function.
Auto Trait Implementations§
impl<'a, 'vfs, T, Vfs> Freeze for FmtWrapperRefWr<'a, 'vfs, T, Vfs>where
T: ?Sized,
impl<'a, 'vfs, T, Vfs> RefUnwindSafe for FmtWrapperRefWr<'a, 'vfs, T, Vfs>
impl<'a, 'vfs, T, Vfs> Send for FmtWrapperRefWr<'a, 'vfs, T, Vfs>
impl<'a, 'vfs, T, Vfs> Sync for FmtWrapperRefWr<'a, 'vfs, T, Vfs>
impl<'a, 'vfs, T, Vfs> Unpin for FmtWrapperRefWr<'a, 'vfs, T, Vfs>where
T: ?Sized,
impl<'a, 'vfs, T, Vfs> UnwindSafe for FmtWrapperRefWr<'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