Struct nu_pretty_hex::HexConfig [−][src]
pub struct HexConfig {
pub title: bool,
pub ascii: bool,
pub width: usize,
pub group: usize,
pub chunk: usize,
pub skip: Option<usize>,
pub length: Option<usize>,
}
Expand description
Configuration parameters for hexdump.
Fields
title: bool
Write first line header with data length.
ascii: bool
Append ASCII representation column.
width: usize
Source bytes per row. 0 for single row without address prefix.
group: usize
Chunks count per group. 0 for single group (column).
chunk: usize
Source bytes per chunk (word). 0 for single word.
skip: Option<usize>
Bytes from 0 to skip
length: Option<usize>
Length to return
Implementations
Trait Implementations
Default configuration with title
, ascii
, 16 source bytes width
grouped to 4 separate
hex bytes. Using in pretty_hex
, pretty_hex_write
and fmt::Debug
implementation.
Auto Trait Implementations
impl RefUnwindSafe for HexConfig
impl UnwindSafe for HexConfig
Blanket Implementations
Mutably borrows from an owned value. Read more