Trait std::ascii::OwnedStrAsciiExt[src]
pub trait OwnedStrAsciiExt {
fn into_ascii_upper(self) -> String;
fn into_ascii_lower(self) -> String;
}Extension methods for ASCII-subset only operations on owned strings
Required Methods
fn into_ascii_upper(self) -> String
Convert the string to ASCII upper case: ASCII letters 'a' to 'z' are mapped to 'A' to 'Z', but non-ASCII letters are unchanged.
fn into_ascii_lower(self) -> String
Convert the string to ASCII lower case: ASCII letters 'A' to 'Z' are mapped to 'a' to 'z', but non-ASCII letters are unchanged.
Implementors
impl OwnedStrAsciiExt for String