pub enum DeploymentProfile {
SingleTenant,
MultiTenant,
}Expand description
Host-runtime isolation profile applied when a sandbox is deployed.
Unlike SecurityProfile, which changes behavior inside the guest, this
profile controls defenses enforced by host-side runtime backends. A hosting
platform can override the requested value before launch.
Variants§
SingleTenant
The sandbox runs for one trusted tenant with the requested host-runtime configuration.
MultiTenant
The sandbox runs on shared infrastructure with platform-owned isolation floors.
Trait Implementations§
Source§impl Clone for DeploymentProfile
impl Clone for DeploymentProfile
Source§fn clone(&self) -> DeploymentProfile
fn clone(&self) -> DeploymentProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DeploymentProfile
Source§impl Debug for DeploymentProfile
impl Debug for DeploymentProfile
Source§impl Default for DeploymentProfile
impl Default for DeploymentProfile
Source§fn default() -> DeploymentProfile
fn default() -> DeploymentProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentProfile
impl<'de> Deserialize<'de> for DeploymentProfile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DeploymentProfile
Source§impl PartialEq for DeploymentProfile
impl PartialEq for DeploymentProfile
Source§impl Serialize for DeploymentProfile
impl Serialize for DeploymentProfile
impl StructuralPartialEq for DeploymentProfile
Auto Trait Implementations§
impl Freeze for DeploymentProfile
impl RefUnwindSafe for DeploymentProfile
impl Send for DeploymentProfile
impl Sync for DeploymentProfile
impl Unpin for DeploymentProfile
impl UnsafeUnpin for DeploymentProfile
impl UnwindSafe for DeploymentProfile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more