pub trait ProtocolLayer:
Any
+ Send
+ Sync
+ Debug {
// Required methods
fn protocol_name(&self) -> &str;
fn as_any(&self) -> &dyn Any;
fn to_json(&self) -> Value;
}Expand description
Trait for custom protocol layers to implement