pub trait EqMultiple {
    fn eq_multiple<S: AsRef<[u8]>>(&self, bs: &[S]) -> Option<usize>;
}
Expand description

To extend types which implement AsRef<[u8]> to have a eq_multiple method.

Required methods

Returns Some(usize) if one of the given string slices case-sensitively matches this string slice.

Implementors