ucd_trie

Type Alias Result

source
pub type Result<T> = Result<T, Error>;
Expand description

A type alias that maps to std::result::Result<T, ucd_trie::Error>.

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.6.0

Ok(T)

Contains the success value

§1.6.0

Err(Error)

Contains the error value