hyperlane_broadcast/broadcast/
trait.rs

1use crate::*;
2
3/// Defines the essential traits required for types that can be broadcast.
4///
5/// Any type implementing `BroadcastTrait` must also implement `Clone` and `Debug`,
6/// enabling efficient duplication and debugging within the broadcast system.
7pub trait BroadcastTrait: Clone + Debug {}