Module convert

Source
Expand description

Character conversions.

Structsยง

CharTryFromError
The error type returned when a conversion from u32 to char fails.
ParseCharError
An error which can be returned when parsing a char.

Enumsยง

CharErrorKind ๐Ÿ”’

Functionsยง

char_try_from_u32 ๐Ÿ”’
from_digit ๐Ÿ”’
Converts a digit in the given radix to a char. See char::from_digit.
from_u32 ๐Ÿ”’
Converts a u32 to a char. See char::from_u32.
from_u32_unchecked ๐Ÿ”’ โš 
Converts a u32 to a char, ignoring validity. See char::from_u32_unchecked.