Struct display_bytes::DisplayBytes[][src]

pub struct DisplayBytes<'b, F: 'b> { /* fields omitted */ }

A wrapper around a byte sequence which implements Display.

Non-decodable byte sequences will be printed in human-readable representation based on the byte format F. Use DisplayBytesConfig to get an instance of this type.

Trait Implementations

impl<'b, F: Debug + 'b> Debug for DisplayBytes<'b, F>
[src]

Formats the value using the given formatter. Read more

impl<'b, F: ByteFormat + 'b> Display for DisplayBytes<'b, F>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'b, F> Send for DisplayBytes<'b, F> where
    F: Send + Sync

impl<'b, F> !Sync for DisplayBytes<'b, F>