Skip to main content

DeviceIdentificationProxyInterface

Trait DeviceIdentificationProxyInterface 

Source
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§

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§