pub trait StrFind { // Required methods fn start_with(&self, s: &[u8]) -> bool; fn index_of(&self, s: &[u8]) -> Option<usize>; }