Type Definition monotree::Result

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

A Result type redefined for error handling. The same as std::result::Result<T, Errors>.