pub enum BootstrapSecurityProfile {
Default,
Restricted,
}Expand description
In-guest security profile selected for a sandbox.
Variants§
Default
Preserve normal guest-root behavior.
Restricted
Restrict mount and process privileges inside the guest.
Trait Implementations§
Source§impl Clone for BootstrapSecurityProfile
impl Clone for BootstrapSecurityProfile
Source§fn clone(&self) -> BootstrapSecurityProfile
fn clone(&self) -> BootstrapSecurityProfile
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 BootstrapSecurityProfile
Source§impl Debug for BootstrapSecurityProfile
impl Debug for BootstrapSecurityProfile
Source§impl Default for BootstrapSecurityProfile
impl Default for BootstrapSecurityProfile
Source§fn default() -> BootstrapSecurityProfile
fn default() -> BootstrapSecurityProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BootstrapSecurityProfile
impl<'de> Deserialize<'de> for BootstrapSecurityProfile
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 BootstrapSecurityProfile
Source§impl PartialEq for BootstrapSecurityProfile
impl PartialEq for BootstrapSecurityProfile
Source§impl Serialize for BootstrapSecurityProfile
impl Serialize for BootstrapSecurityProfile
impl StructuralPartialEq for BootstrapSecurityProfile
Auto Trait Implementations§
impl Freeze for BootstrapSecurityProfile
impl RefUnwindSafe for BootstrapSecurityProfile
impl Send for BootstrapSecurityProfile
impl Sync for BootstrapSecurityProfile
impl Unpin for BootstrapSecurityProfile
impl UnsafeUnpin for BootstrapSecurityProfile
impl UnwindSafe for BootstrapSecurityProfile
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