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