imag/libimagentryedit/src/result.rs

7 lines
105 B
Rust
Raw Normal View History

2016-08-09 10:32:26 +00:00
use std::result::Result as RResult;
use error::EditError;
pub type Result<T> = RResult<T, EditError>;