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
impl LowerHexString
Sourcepub fn to_uppercase(self) -> UpperHexString
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.