imag/libimaglink/src/result.rs

7 lines
105 B
Rust
Raw Normal View History

2016-02-03 14:47:14 +00:00
use std::result::Result as RResult;
use error::LinkError;
pub type Result<T> = RResult<T, LinkError>;