pub struct TsvEscaper<'a, 'b>(/* private fields */);Expand description
This type wraps a Formatter and implements simple escaping of the semantically meaningful
tab-separated-values characters '\t', '\n', '\r' and '\\'. Writes to instances of this
type are forwarded to the underlying Formatter except for these characters, which have their
ANSI C backslash escaped forms emitted instead.
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b> !RefUnwindSafe for TsvEscaper<'a, 'b>
impl<'a, 'b> !Send for TsvEscaper<'a, 'b>
impl<'a, 'b> !Sync for TsvEscaper<'a, 'b>
impl<'a, 'b> !UnwindSafe for TsvEscaper<'a, 'b>
impl<'a, 'b> Freeze for TsvEscaper<'a, 'b>
impl<'a, 'b> Unpin for TsvEscaper<'a, 'b>
impl<'a, 'b> UnsafeUnpin for TsvEscaper<'a, 'b>
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