hyperlane_plugin_websocket/websocket/
enum.rs

1use crate::*;
2
3#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
4pub enum BroadcastType<T: BroadcastTypeTrait> {
5    PointToPoint(T, T),
6    PointToGroup(T),
7}