Type Alias MatchResult

Source
pub type MatchResult<T> = Result<T, MatchError>;

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(MatchError)

Contains the error value