pub type FindResult = Result<Vec<usize>, &'static str>;
pub enum FindResult { Ok(Vec<usize>), Err(&'static str), }
Contains the success value
Contains the error value