pub trait ErrorSyntaxProtocolProxyInterface: Send + Sync {
type TestErrorSyntaxResponseFut: Future<Output = Result<ErrorSyntaxProtocolTestErrorSyntaxResult, Error>> + Send;
// Required method
fn test_error_syntax(&self) -> Self::TestErrorSyntaxResponseFut;
}