pub type Handled<T> = Result<T, OcpiError>;
server
The result every handler method returns.
pub enum Handled<T> { Ok(T), Err(OcpiError), }
Contains the success value
Contains the error value