pub type Result<V> = Result<V, Error>;
pub enum Result<V> { Ok(V), Err(Error), }
Contains the success value
Contains the error value