Expand description
Character conversions.
Structsยง
- Char
TryFrom Error - The error type returned when a conversion from
u32
tochar
fails. - Parse
Char Error - An error which can be returned when parsing a char.
Enumsยง
- Char
Error ๐Kind
Functionsยง
- char_
try_ ๐from_ u32 - from_
digit ๐ - Converts a digit in the given radix to a
char
. Seechar::from_digit
. - from_
u32 ๐ - Converts a
u32
to achar
. Seechar::from_u32
. - from_
u32_ ๐ โunchecked - Converts a
u32
to achar
, ignoring validity. Seechar::from_u32_unchecked
.