pub trait DeviceIdProviderProxyInterface: Send + Sync {
    type GetIdResponseFut: Future<Output = Result<String, Error>> + Send;

    // Required method
    fn get_id(&self) -> Self::GetIdResponseFut;
}

Required Associated Types§

source

type GetIdResponseFut: Future<Output = Result<String, Error>> + Send

Required Methods§

source

fn get_id(&self) -> Self::GetIdResponseFut

Implementors§