pub struct LinuxSandboxLauncher {
pub program: PathBuf,
pub prefix_args: Vec<String>,
}Expand description
How the Linux sandbox helper binary is invoked.
The default helper is the vtcode binary itself (busybox pattern): the
launcher subcommand token must be prepended before the helper-protocol
flags. An external helper configured via VTCODE_LINUX_SANDBOX_EXECUTABLE
receives the protocol flags directly.
Fields§
§program: PathBufThe helper program to execute.
prefix_args: Vec<String>Arguments inserted before the helper-protocol flags (e.g. the
sandbox-exec subcommand token for busybox dispatch).
Implementations§
Trait Implementations§
Source§impl Clone for LinuxSandboxLauncher
impl Clone for LinuxSandboxLauncher
Source§fn clone(&self) -> LinuxSandboxLauncher
fn clone(&self) -> LinuxSandboxLauncher
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 moreSource§impl Debug for LinuxSandboxLauncher
impl Debug for LinuxSandboxLauncher
impl Eq for LinuxSandboxLauncher
Source§impl PartialEq for LinuxSandboxLauncher
impl PartialEq for LinuxSandboxLauncher
impl StructuralPartialEq for LinuxSandboxLauncher
Auto Trait Implementations§
impl Freeze for LinuxSandboxLauncher
impl RefUnwindSafe for LinuxSandboxLauncher
impl Send for LinuxSandboxLauncher
impl Sync for LinuxSandboxLauncher
impl Unpin for LinuxSandboxLauncher
impl UnsafeUnpin for LinuxSandboxLauncher
impl UnwindSafe for LinuxSandboxLauncher
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.