pub trait ErrorSyntaxProtocolProxyInterface: Send + Sync {
type TestErrorSyntaxResponseFut: Future<Output = Result<ErrorSyntaxProtocolTestErrorSyntaxResult, Error>> + Send;
// Required method
fn test_error_syntax(&self) -> Self::TestErrorSyntaxResponseFut;
}Required Associated Types§
type TestErrorSyntaxResponseFut: Future<Output = Result<ErrorSyntaxProtocolTestErrorSyntaxResult, Error>> + Send
Required Methods§
fn test_error_syntax(&self) -> Self::TestErrorSyntaxResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".