pub trait IsAsciiUppercased {
// Required method
fn is_ascii_uppercased(&self) -> bool;
}Expand description
To extend [u8] and str to have is_ascii_uppercased method.
Required Methods§
Sourcefn is_ascii_uppercased(&self) -> bool
fn is_ascii_uppercased(&self) -> bool
Returns true if all characters in the string are not lowercase according to Unicode.