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§
type SetDeviceIdentificationResponseFut: Future<Output = Result<DeviceIdentificationSetDeviceIdentificationResult, Error>> + Send
Required Methods§
fn set_device_identification( &self, records: &[DeviceIdentificationRecord], token: ServerEnd<DeviceIdentificationHandleMarker>, ) -> Self::SetDeviceIdentificationResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".