Skip to main content

Hex

Type Alias Hex 

pub type Hex = HexView<'static>;
Available on crate features quic and std only.
Expand description

Binary data with owned or static backing storage.

Aliased Type§

pub struct Hex(pub Cow<'static, [u8]>);

Tuple Fields§

§0: Cow<'static, [u8]>

Original binary contents; hexadecimal conversion is deferred until serialization.