pub type Result<V> = Result<V, Error>;
Your usual Result object that has its error position filled (in this case with Error.
Result
Error
pub enum Result<V> { Ok(V), Err(Error), }
Contains the success value
Contains the error value