A WebSocket plugin for the Hyperlane framework, providing robust WebSocket communication capabilities and integrating with hyperlane-broadcast for efficient message dissemination.
/// A trait for types that can be used as broadcast identifiers.
////// Types implementing this trait must be convertible to a string,
/// be partially orderable, and be cloneable.
pubtraitBroadcastTypeTrait: ToString + PartialOrd + Clone {}