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