hyperlane_broadcast/broadcast_map/
type.rs1use crate::*;
2
3pub type BroadcastMapSendError<T> = SendError<T>;
4pub type BroadcastMapSendResult<T> = Result<Option<ReceiverCount>, BroadcastMapSendError<T>>;
5pub type BroadcastMapReceiver<T> = Receiver<T>;
6pub type OptionBroadcast<T> = Option<Broadcast<T>>;
7pub type OptionBroadcastMapReceiver<T> = Option<BroadcastMapReceiver<T>>;
8pub type BroadcastMapSender<T> = Sender<T>;
9pub type OptionBroadcastMapSender<T> = Option<BroadcastMapSender<T>>;
10pub type OptionReceiverCount = Option<ReceiverCount>;