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