Type Alias UpperHexString

Source
pub type UpperHexString = HexString<{ Case::Upper }>;
Expand description

Convenient alias type to represent uppercase hexadecimal string.

Aliased Type§

pub struct UpperHexString(/* private fields */);

Implementations§

Source§

impl UpperHexString

Source

pub fn to_lowercase(self) -> LowerHexString

Constructs a LowerHexString from an UpperHexString.

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