imag/libimagtag/src/result.rs
2016-02-14 19:34:01 +01:00

6 lines
103 B
Rust

use std::result::Result as RResult;
use error::TagError;
pub type Result<T> = RResult<T, TagError>;