pub type NotificationResult<T> = Result<T, Error>;
Custom Result type for mac-notification-sys.
enum NotificationResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value