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