Type Alias LowerHexString

Source
pub type LowerHexString = HexString<{ Case::Lower }>;
Expand description

Convenient alias type to represent lowercase hexadecimal string.

Aliased Type§

struct LowerHexString(/* private fields */);

Implementations§

Source§

impl LowerHexString

Source

pub fn to_uppercase(self) -> UpperHexString

Constructs an UpperHexString from a LowerHexString.

This method performs a copy if the internal string is a string literal.