pub struct ShellResult {
pub exit_code: Option<i32>,
pub stdout: String,
pub stderr: String,
pub timed_out: bool,
pub agent_owned: bool,
}Expand description
Shell shell result request or result value. Creating the value does not spawn a process; shell executors document policy checks and command side effects.
Fields§
§exit_code: Option<i32>Process exit status when the process reported one.
stdout: StringCaptured standard output. Current shell execution captures the full buffered stream; hosts should add bounds before using it with untrusted commands.
stderr: StringCaptured standard error. Current shell execution captures the full buffered stream; hosts should add bounds before using it with untrusted commands.
timed_out: boolWhether execution ended because the timeout budget elapsed.
agent_owned: boolWhether the SDK/tooling owns the launched process lifecycle for cancellation and cleanup evidence.
Trait Implementations§
Source§impl Clone for ShellResult
impl Clone for ShellResult
Source§fn clone(&self) -> ShellResult
fn clone(&self) -> ShellResult
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 ShellResult
impl Debug for ShellResult
Source§impl<'de> Deserialize<'de> for ShellResult
impl<'de> Deserialize<'de> for ShellResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ShellResult
impl PartialEq for ShellResult
Source§fn eq(&self, other: &ShellResult) -> bool
fn eq(&self, other: &ShellResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ShellResult
impl Serialize for ShellResult
impl Eq for ShellResult
impl StructuralPartialEq for ShellResult
Auto Trait Implementations§
impl Freeze for ShellResult
impl RefUnwindSafe for ShellResult
impl Send for ShellResult
impl Sync for ShellResult
impl Unpin for ShellResult
impl UnsafeUnpin for ShellResult
impl UnwindSafe for ShellResult
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.