Trait str_utils::StartsWithIgnoreCase[][src]

pub trait StartsWithIgnoreCase {
    fn starts_with_ignore_case<S: AsRef<str>>(&self, b: S) -> bool;
}

To extend types which implement AsRef<str> to have a starts_with_ignore_case method.

Required methods

fn starts_with_ignore_case<S: AsRef<str>>(&self, b: S) -> bool[src]

Returns true if the given string slice case-insensitively (using case-folding) matches a prefix of this string slice.

NOTE: This method may allocate heap memory.

Loading content...

Implementors

impl<T: AsRef<str>> StartsWithIgnoreCase for T[src]

Loading content...