IsUppercased

Trait IsUppercased 

Source
pub trait IsUppercased {
    // Required method
    fn is_uppercased(&self) -> bool;
}
Expand description

To extend str to have is_uppercased method.

Required Methods§

Source

fn is_uppercased(&self) -> bool

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

Implementations on Foreign Types§

Source§

impl IsUppercased for str

Implementors§