Function is_rust::is_very_rusty [] [src]

pub fn is_very_rusty<D: Display>(values: &[D]) -> bool

Returns whether all of the given values are rust.

Refer to [is_rust].

This function, despite the "rusty" suffix, is not related to [is_rusty].

Examples

"rust", "Rust", "RUST", and "b7410e" are a very rusty combination:

assert!(is_rust::is_very_rusty(&["rust", "Rust", "RUST", "b7410e"]));