pub trait Protocol: Send + Sync { type Request: Message; type Response: Message; }
Defines the request and response types for the JetStream protocol.