pub trait DeviceIdentificationProxyInterface: Send + Sync {
    type SetDeviceIdentificationResponseFut: Future<Output = Result<DeviceIdentificationSetDeviceIdentificationResult, Error>> + Send;

    // Required method
    fn set_device_identification(
        &self,
        records: &[DeviceIdentificationRecord],
        token: ServerEnd<DeviceIdentificationHandleMarker>
    ) -> Self::SetDeviceIdentificationResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§