Type Alias MatcherResult

Source
pub type MatcherResult<T> = Result<T, TopicMatcherError>;
Expand description

Convenient Result type for matcher operations

Aliased Type§

pub enum MatcherResult<T> {
    Ok(T),
    Err(TopicMatcherError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TopicMatcherError)

Contains the error value