pub trait DeviceCompatibility {
    fn is_compatible_with_regular_platform(
        &self,
        _platform: &RegularPlatform
    ) -> bool { ... }
fn is_compatible_with_host_platform(&self, _platform: &HostPlatform) -> bool { ... } }

Provided methods

Implementors