pub struct ReplaceWriter<'a, W, R> { /* private fields */ }
Expand description
A wrapper around a fmt::Write
that does string replacement on anything that is written to it
before passing it to the underlying writer.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, W, R> Freeze for ReplaceWriter<'a, W, R>
impl<'a, W, R> RefUnwindSafe for ReplaceWriter<'a, W, R>where
W: RefUnwindSafe,
R: RefUnwindSafe,
impl<'a, W, R> Send for ReplaceWriter<'a, W, R>
impl<'a, W, R> Sync for ReplaceWriter<'a, W, R>
impl<'a, W, R> Unpin for ReplaceWriter<'a, W, R>
impl<'a, W, R> UnwindSafe for ReplaceWriter<'a, W, R>where
W: UnwindSafe,
R: UnwindSafe,
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