pub struct ResolvedBashSandbox {
pub network: bool,
pub writable_paths: Vec<String>,
pub max_time_ms: Option<u64>,
pub max_output_bytes: Option<usize>,
}Expand description
Resolved sandbox settings for bash execution.
Fields§
§network: bool§writable_paths: Vec<String>§max_time_ms: Option<u64>§max_output_bytes: Option<usize>Trait Implementations§
Source§impl Clone for ResolvedBashSandbox
impl Clone for ResolvedBashSandbox
Source§fn clone(&self) -> ResolvedBashSandbox
fn clone(&self) -> ResolvedBashSandbox
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 Freeze for ResolvedBashSandbox
impl RefUnwindSafe for ResolvedBashSandbox
impl Send for ResolvedBashSandbox
impl Sync for ResolvedBashSandbox
impl Unpin for ResolvedBashSandbox
impl UnsafeUnpin for ResolvedBashSandbox
impl UnwindSafe for ResolvedBashSandbox
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