pub type Result<T> = Result<T, Error>;
A type alias that maps to std::result::Result<T, ucd_trie::Error>.
std::result::Result<T, ucd_trie::Error>
enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value