mitrid_core 0.9.4

Core library of the Mitrid framework
1
2
3
4
5
6
7
8
//! # Result
//!
//! `result` is the module providing the `Result` type used throughout the library.

use std::result::Result as StdResult;

/// Alias type to a `std::result::Result` with `String` error.
pub type Result<T> = StdResult<T, String>;