Type Alias hexstring::LowerHexString

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

Convenient alias type to represent lowercase hexadecimal string.

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.