pub struct DirectoryTerminalOptsBuilder<'a> { /* private fields */ }
Expand description
Builder for DirectoryTerminalOpts
.
Implementations§
Source§impl<'a> DirectoryTerminalOptsBuilder<'a>
impl<'a> DirectoryTerminalOptsBuilder<'a>
Sourcepub fn cmd<VALUE: Into<Vec<&'a str>>>(&mut self, value: VALUE) -> &mut Self
pub fn cmd<VALUE: Into<Vec<&'a str>>>(&mut self, value: VALUE) -> &mut Self
If set, override the container’s default terminal command and invoke these command arguments instead.
Sourcepub fn container<VALUE: Into<ContainerId>>(&mut self, value: VALUE) -> &mut Self
pub fn container<VALUE: Into<ContainerId>>(&mut self, value: VALUE) -> &mut Self
If set, override the default container used for the terminal.
Sourcepub fn experimental_privileged_nesting<VALUE: Into<bool>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn experimental_privileged_nesting<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
Provides Dagger access to the executed command.
Sourcepub fn insecure_root_capabilities<VALUE: Into<bool>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn insecure_root_capabilities<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
Execute the command with all root capabilities. This is similar to running a command with “sudo” or executing “docker run” with the “–privileged” flag. Containerization does not provide any security guarantees when using this option. It should only be used when absolutely necessary and only with trusted commands.
Sourcepub fn build(
&self,
) -> Result<DirectoryTerminalOpts<'a>, DirectoryTerminalOptsBuilderError>
pub fn build( &self, ) -> Result<DirectoryTerminalOpts<'a>, DirectoryTerminalOptsBuilderError>
Trait Implementations§
Source§impl<'a> Clone for DirectoryTerminalOptsBuilder<'a>
impl<'a> Clone for DirectoryTerminalOptsBuilder<'a>
Source§fn clone(&self) -> DirectoryTerminalOptsBuilder<'a>
fn clone(&self) -> DirectoryTerminalOptsBuilder<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for DirectoryTerminalOptsBuilder<'a>
impl<'a> RefUnwindSafe for DirectoryTerminalOptsBuilder<'a>
impl<'a> Send for DirectoryTerminalOptsBuilder<'a>
impl<'a> Sync for DirectoryTerminalOptsBuilder<'a>
impl<'a> Unpin for DirectoryTerminalOptsBuilder<'a>
impl<'a> UnwindSafe for DirectoryTerminalOptsBuilder<'a>
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