Operations on ASCII strings and characters.
Most string operations in Rust act on UTF-8 strings. However, at times it makes more sense to only consider the ASCII character set for a specific operation.
The AsciiExt
trait provides methods that allow for character operations that only act on the ASCII subset and leave non-ASCII characters alone.
The escape_default
function provides an iterator over the bytes of an escaped version of the character given.
EscapeDefault |
An iterator over the escaped version of a byte. |
AsciiExt |
Deprecated Extension methods for ASCII-subset only operations. |
escape_default |
Returns an iterator that produces an escaped version of a |
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/ascii/index.html