Struct ProcessBuilder

Source
pub struct ProcessBuilder { /* private fields */ }
Expand description

Builder for Process.

Implementations§

Source§

impl ProcessBuilder

Source

pub fn terminal<VALUE: Into<Option<bool>>>(&mut self, value: VALUE) -> &mut Self

Terminal creates an interactive terminal for the container.

Source

pub fn console_size<VALUE: Into<Option<ConsoleSizeBox>>>( &mut self, value: VALUE, ) -> &mut Self

ConsoleSize specifies the size of the console.

Source

pub fn user<VALUE: Into<User>>(&mut self, value: VALUE) -> &mut Self

User specifies user information for the process.

Source

pub fn args<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self

Args specifies the binary and arguments for the application to execute.

Source

pub fn env<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self

Env populates the process environment for the process.

Source

pub fn cwd<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self

Cwd is the current working directory for the process and must be relative to the container’s root.

Source

pub fn capabilities<VALUE: Into<Option<LinuxCapabilities>>>( &mut self, value: VALUE, ) -> &mut Self

Capabilities are Linux capabilities that are kept for the process.

Source

pub fn rlimits<VALUE: Into<Vec<POSIXRlimit>>>( &mut self, value: VALUE, ) -> &mut Self

Rlimits specifies rlimit options to apply to the process.

Source

pub fn no_new_privileges<VALUE: Into<Option<bool>>>( &mut self, value: VALUE, ) -> &mut Self

NoNewPrivileges controls whether additional privileges could be gained by processes in the container.

Source

pub fn app_armor_profile<VALUE: Into<Option<String>>>( &mut self, value: VALUE, ) -> &mut Self

ApparmorProfile specifies the apparmor profile for the container.

Source

pub fn oom_score_adj<VALUE: Into<Option<i32>>>( &mut self, value: VALUE, ) -> &mut Self

Specify an oom_score_adj for the container.

Source

pub fn selinux_label<VALUE: Into<Option<String>>>( &mut self, value: VALUE, ) -> &mut Self

SelinuxLabel specifies the selinux context that the container process is run as.

Source

pub fn build(&self) -> Result<Process, String>

Builds a new Process.

§Errors

If a required field has not been initialized.

Trait Implementations§

Source§

impl Clone for ProcessBuilder

Source§

fn clone(&self) -> ProcessBuilder

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Default for ProcessBuilder

Source§

fn default() -> ProcessBuilder

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

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> 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> 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.