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

Provided Methods§

source

fn is_compatible_with_regular_platform( &self, _platform: &RegularPlatform ) -> bool

source

fn is_compatible_with_host_platform(&self, _platform: &HostPlatform) -> bool

source

fn is_compatible_with_ios_platform(&self, _platform: &IosPlatform) -> bool

Implementors§