pub trait DeviceIdentificationProxyInterface: Send + Sync {
type SetDeviceIdentificationResponseFut: Future<Output = Result<DeviceIdentificationSetDeviceIdentificationResult, Error>> + Send;
// Required method
fn set_device_identification(
&self,
records: &mut dyn ExactSizeIterator<Item = DeviceIdentificationRecord>,
token: ServerEnd<DeviceIdentificationHandleMarker>
) -> Self::SetDeviceIdentificationResponseFut;
}