pub trait StringExt { // Required method fn substring(&self, start_index: usize, end_index: usize) -> &str; }