pub trait ProtocolFactoryProxyInterface: Send + Sync {
type CreateProtocolResponseFut: Future<Output = Result<ProtocolFactoryCreateProtocolResult, Error>> + Send;
// Required method
fn create_protocol(
&self,
protocol: ServerEnd<ProtocolMarker>,
) -> Self::CreateProtocolResponseFut;
}