Skip to main content

IsAsciiLowercased

Trait IsAsciiLowercased 

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

To extend [u8] and str to have is_ascii_lowercased method.

Required Methods§

Source

fn is_ascii_lowercased(&self) -> bool

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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IsAsciiLowercased for [u8]

Source§

impl IsAsciiLowercased for str

Implementors§