summaryrefslogtreecommitdiffstats
path: root/src/result.rs
blob: f450c5a660521b0d417d4e6ed2a3c99428924cfe (plain)
1
2
3
4
5
6
7
8
//! Module containing `Result` type

use std::result::Result as RResult;

use error::TaskError;

/// Result type wrapping the standard std::result::Result type
pub type Result<T> = RResult<T, TaskError>;