[][src]Struct display_bytes::FormatHex

pub struct FormatHex<'s> {
    pub prefix: &'s str,
    pub separator: &'s str,
    pub uppercase: bool,
}

Formats bytes in hexadecimal pairs (00 - FF).

Fields

prefix: &'s str

The prefix, if any, for each byte.

separator: &'s str

The separator for individual hex-formatted bytes.

uppercase: bool

Whether or not to write the hex-pairs in uppercase

Trait Implementations

impl<'s> ByteFormat for FormatHex<'s>[src]

fn bytes_to_string(&self, bytes: &[u8]) -> String[src]

Uses fmt_bytes() to encode the byte-sequence and print it to a String. Read more

impl<'s> Clone for FormatHex<'s>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'s> Copy for FormatHex<'s>[src]

impl<'s> Debug for FormatHex<'s>[src]

Auto Trait Implementations

impl<'s> Send for FormatHex<'s>

impl<'s> Unpin for FormatHex<'s>

impl<'s> Sync for FormatHex<'s>

impl<'s> UnwindSafe for FormatHex<'s>

impl<'s> RefUnwindSafe for FormatHex<'s>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]