Expand description
Operations on ASCII strings and characters.
Most string operations in Rust act on UTF-8 strings. However, at times itmakes more sense to only consider the ASCII character set for a specificoperation.
TheAsciiExt trait provides methods that allow for characteroperations that only act on the ASCII subset and leave non-ASCII charactersalone.
Theescape_default function provides an iterator over the bytes of anescaped version of the character given.
Structs§
- Escape
Default - An iterator over the escaped version of a byte.
Enums§
- Char
Experimental - One of the 128 Unicode characters from U+0000 through U+007F,often known as theASCII subset.
Traits§
- Ascii
Ext Deprecated - Extension methods for ASCII-subset only operations.
Functions§
- escape_
default - Returns an iterator that produces an escaped version of a
u8.