Struct apple_bundle::entitlements::hypervisor::Hypervisor [−][src]
pub struct Hypervisor {
pub security_hypervisor: Option<bool>,
pub vm_hypervisor: Option<bool>,
pub vm_device_access: Option<bool>,
pub vm_networking: Option<bool>,
pub security_virtualization: Option<bool>,
}Expand description
Hypervisor
Fields
security_hypervisor: Option<bool>A Boolean value that indicates whether the app creates and manages virtual machines.
The entitlement is required to use the Hypervisor APIs in any process.
Important
If your app has a deployment target of macOS 10.15 or earlier, add the com.apple.vm.hypervisor entitlement to your app in addition to this entitlement.
Availability
- macOS 11.0+
Framework
- Hypervisor
vm_hypervisor: Option<bool>For apps with a deployment target of macOS 11 and later, use com.apple.security.hypervisor instead. For deployment targets earlier than macOS 11, add both that and the com.apple.vm.hypervisor entitlement to your app.
A Boolean value that indicates whether the app creates and manages virtual machines.
The entitlement is required to use the Hypervisor APIs in a sandboxed process.
Availability
- macOS 10.10–11.0
Framework
- Hypervisor
vm_device_access: Option<bool>A Boolean value that indicates whether the app captures USB devices and uses them in the guest-operating system.
The entitlement is required to use the IOUSBHost APIs for USB device capture.
Availability
- macOS 10.10+
Framework
- Hypervisor
vm_networking: Option<bool>A Boolean that indicates whether the app manages virtual network interfaces without escalating privileges to the root user.
The entitlement is required to use the vmnet APIs.
Note
This entitlement is restricted to developers of virtualization software. To request this entitlement, contact your Apple representative.
Availability
- macOS 10.10+
Framework
- Hypervisor
security_virtualization: Option<bool>A Boolean that indicates whether the app can use the Virtualization framework.
Read the value of isSupported to check for the presence of both this entitlement and the hardware support needed for virtualization.
Availability
- macOS 11.0+
Framework
- Hypervisor
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for Hypervisorimpl Send for Hypervisorimpl Sync for Hypervisorimpl Unpin for Hypervisorimpl UnwindSafe for HypervisorBlanket Implementations
Mutably borrows from an owned value. Read more