Skip to main content

MatchResult

Type Alias MatchResult 

Source
pub type MatchResult<T> = Result<T, MatcherError>;
Expand description

Result type alias for title matching.

Aliased Type§

pub enum MatchResult<T> {
    Ok(T),
    Err(MatcherError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(MatcherError)

Contains the error value