pub enum SandboxProvider {
Docker,
Kata,
Cube,
Codex,
}Expand description
Which sandbox backend to use.
Variants§
Docker
Kata
Cube
Codex
Deep codex integration: run tool commands through codex’s SandboxManager
(ADR-0005). This is the production backend for the agent runtime.
Implementations§
Trait Implementations§
Source§impl Clone for SandboxProvider
impl Clone for SandboxProvider
Source§fn clone(&self) -> SandboxProvider
fn clone(&self) -> SandboxProvider
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 SandboxProvider
Source§impl Debug for SandboxProvider
impl Debug for SandboxProvider
impl Eq for SandboxProvider
Source§impl PartialEq for SandboxProvider
impl PartialEq for SandboxProvider
impl StructuralPartialEq for SandboxProvider
Auto Trait Implementations§
impl Freeze for SandboxProvider
impl RefUnwindSafe for SandboxProvider
impl Send for SandboxProvider
impl Sync for SandboxProvider
impl Unpin for SandboxProvider
impl UnsafeUnpin for SandboxProvider
impl UnwindSafe for SandboxProvider
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