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