Skip to main content

FactoryResetProxyInterface

Trait FactoryResetProxyInterface 

Source
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§

Source

fn reset(&self) -> Self::ResetResponseFut

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§