usesuper::{NotificationQueue, NotificationQueueMessage};/// Notification queue that will only reply with [None] for
/// cases when a queue is not available
pubstructNoopNotificationQueue;implNotificationQueue forNoopNotificationQueue{
async fnnext_message(&mutself)->Option<NotificationQueueMessage>{None}}