pub trait AsyncPushSender:
    Send
    + Sync
    + 'static {
    // Required method
    fn send(&self, info: PushInfo) -> Result<(), SendError>;
}Expand description
A trait for sender parts of a channel that can be used for sending push messages from async connection.