pub type Notification = Result<SubscribeResponse, Status>;
enum Notification { Ok(SubscribeResponse), Err(Status), }
Contains the success value
Contains the error value