pub trait MessageSendEventsProvider {
    fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

A trait indicating an object may generate message send events

Required methods

Gets the list of pending events which were generated by previous actions, clearing the list in the process.

Implementors