mdrv/
result.rs

1use std::result;
2
3use ::error;
4
5pub type Result<T> = result::Result<T, error::Error>;