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