Function isNativeOs [src]
Prototype
pub fn isNativeOs(self: Query) bool
Parameters
self: Query
Source
pub fn isNativeOs(self: Query) bool {
return self.os_tag == null and self.os_version_min == null and self.os_version_max == null and
self.dynamic_linker.get() == null and self.glibc_version == null and self.android_api_level == null;
}