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