IsAsciiUppercased

Trait IsAsciiUppercased 

Source
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§

Source

fn is_ascii_uppercased(&self) -> bool

Returns true if all characters in the string are not lowercase according to Unicode.

Implementations on Foreign Types§

Source§

impl IsAsciiUppercased for str

Source§

impl IsAsciiUppercased for [u8]

Implementors§