Type Alias hexstring::UpperHexString

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

Convenient alias type to represent uppercase hexadecimal string.

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.