Struct fmt_extra::AsciiStr[][src]

pub struct AsciiStr<T>(pub T);

A wrapper around anything that dereferences to a byte slice ([u8]) that displays it's contents as a string using rust-like (& c-like) escapes for non ascii characters

The entire thing is wrapped in double quotes (") and any interior double quotes are escaped as '"'

Trait Implementations

impl<T: Clone> Clone for AsciiStr<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for AsciiStr<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Eq> Eq for AsciiStr<T>
[src]

impl<T: AsRef<[u8]>> Display for AsciiStr<T>
[src]

Formats the value using the given formatter. Read more

impl<T: AsRef<[u8]>> Debug for AsciiStr<T>
[src]

Formats the value using the given formatter. Read more

impl<T> Deref for AsciiStr<T>
[src]

The resulting type after dereferencing.

Dereferences the value.

impl<T> DerefMut for AsciiStr<T>
[src]

Mutably dereferences the value.

Auto Trait Implementations

impl<T> Send for AsciiStr<T> where
    T: Send

impl<T> Sync for AsciiStr<T> where
    T: Sync