Skip to main content

FactoryDataManagerProxyInterface

Trait FactoryDataManagerProxyInterface 

Source
pub trait FactoryDataManagerProxyInterface: Send + Sync {
    type GetPairingCodeResponseFut: Future<Output = Result<FactoryDataManagerGetPairingCodeResult, Error>> + Send;
    type GetWeaveCertificateResponseFut: Future<Output = Result<FactoryDataManagerGetWeaveCertificateResult, Error>> + Send;

    // Required methods
    fn get_pairing_code(&self) -> Self::GetPairingCodeResponseFut;
    fn get_weave_certificate(&self) -> Self::GetWeaveCertificateResponseFut;
}

Required Associated Types§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§