Skip to main content

GuestBootstrap

Struct GuestBootstrap 

Source
pub struct GuestBootstrap {
Show 14 fields pub block_root: Option<BootstrapBlockRoot>, pub dir_mounts: Vec<BootstrapDirMount>, pub file_mounts: Vec<BootstrapFileMount>, pub disk_mounts: Vec<BootstrapDiskMount>, pub tmpfs_mounts: Vec<BootstrapTmpfsMount>, pub hostname: Option<String>, pub host_alias: Option<String>, pub network: Option<BootstrapNetwork>, pub rlimits: Vec<ExecRlimit>, pub user: Option<String>, pub default_cwd: Option<String>, pub default_env: Vec<BootstrapEnvVar>, pub security_profile: BootstrapSecurityProfile, pub handoff_init: Option<BootstrapHandoffInit>,
}
Expand description

Complete one-shot configuration consumed by agentd during guest boot.

The runtime preloads this payload into the agent console before the VM starts. The surrounding protocol envelope supplies the schema generation.

Fields§

§block_root: Option<BootstrapBlockRoot>

Block-backed root filesystem assembly, when required.

§dir_mounts: Vec<BootstrapDirMount>

Virtiofs directory mounts installed inside the guest.

§file_mounts: Vec<BootstrapFileMount>

Virtiofs file mounts installed inside the guest.

§disk_mounts: Vec<BootstrapDiskMount>

Additional block-device mounts installed inside the guest.

§tmpfs_mounts: Vec<BootstrapTmpfsMount>

Tmpfs mounts installed inside the guest.

§hostname: Option<String>

Guest hostname.

§host_alias: Option<String>

Host alias written into the guest’s hosts file.

§network: Option<BootstrapNetwork>

Guest network interface and address configuration.

§rlimits: Vec<ExecRlimit>

Sandbox-wide resource limits inherited by guest workloads.

§user: Option<String>

Default guest user for command execution.

§default_cwd: Option<String>

Default working directory for requests that omit one.

§default_env: Vec<BootstrapEnvVar>

Environment inherited by requests that do not override a key.

Secret entries contain guest-visible placeholders, never host secret values. Explicit exec and handoff environment entries take precedence.

§security_profile: BootstrapSecurityProfile

In-guest security policy.

§handoff_init: Option<BootstrapHandoffInit>

Optional PID 1 handoff after agentd finishes guest initialization.

Trait Implementations§

Source§

impl Clone for GuestBootstrap

Source§

fn clone(&self) -> GuestBootstrap

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for GuestBootstrap

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for GuestBootstrap

Source§

fn default() -> GuestBootstrap

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for GuestBootstrap

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for GuestBootstrap

Source§

impl PartialEq for GuestBootstrap

Source§

fn eq(&self, other: &GuestBootstrap) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for GuestBootstrap

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for GuestBootstrap

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.