Type Alias BitapResult

Source
pub type BitapResult = Result<Vec<Match>, &'static str>;

Aliased Type§

pub enum BitapResult {
    Ok(Vec<Match>),
    Err(&'static str),
}

Variants§

§1.0.0

Ok(Vec<Match>)

Contains the success value

§1.0.0

Err(&'static str)

Contains the error value