Trait std::ascii::OwnedAsciiExt
[−]
[src]
pub trait OwnedAsciiExt { fn into_ascii_uppercase(self) -> Self; fn into_ascii_lowercase(self) -> Self; }
: would prefer to do this in a more general way
Extension methods for ASCII-subset only operations on owned strings
Required Methods
fn into_ascii_uppercase(self) -> Self
: would prefer to do this in a more general way
Converts 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_lowercase(self) -> Self
: would prefer to do this in a more general way
Converts 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 OwnedAsciiExt for String
impl OwnedAsciiExt for Vec<u8>