pub type ControllerExtGetEventsSupportedResult = Result<Vec<NotificationEvent>, ControllerError>;
enum ControllerExtGetEventsSupportedResult { Ok(Vec<NotificationEvent>), Err(ControllerError), }
Contains the success value
Contains the error value