hyperlane_broadcast/broadcast_map/
type.rs

1use 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 OptionBroadcastMapReceiver<T> = Option<BroadcastMapReceiver<T>>;
7pub type BroadcastMapSender<T> = Sender<T>;
8pub type OptionBroadcastMapSender<T> = Option<BroadcastMapSender<T>>;
9pub type OptionReceiverCount = Option<ReceiverCount>;