pub struct ResponseFunctionShellCallOutputContent {
pub outcome: Outcome,
pub stderr: String,
pub stdout: String,
}Expand description
Captured stdout and stderr for a portion of a shell tool call output.
Fields§
§outcome: OutcomeThe exit or timeout outcome associated with this shell call.
stderr: StringCaptured stderr output for the shell call.
stdout: StringCaptured stdout output for the shell call.
Trait Implementations§
Source§impl Clone for ResponseFunctionShellCallOutputContent
impl Clone for ResponseFunctionShellCallOutputContent
Source§fn clone(&self) -> ResponseFunctionShellCallOutputContent
fn clone(&self) -> ResponseFunctionShellCallOutputContent
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<'de> Deserialize<'de> for ResponseFunctionShellCallOutputContent
impl<'de> Deserialize<'de> for ResponseFunctionShellCallOutputContent
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
Auto Trait Implementations§
impl Freeze for ResponseFunctionShellCallOutputContent
impl RefUnwindSafe for ResponseFunctionShellCallOutputContent
impl Send for ResponseFunctionShellCallOutputContent
impl Sync for ResponseFunctionShellCallOutputContent
impl Unpin for ResponseFunctionShellCallOutputContent
impl UnsafeUnpin for ResponseFunctionShellCallOutputContent
impl UnwindSafe for ResponseFunctionShellCallOutputContent
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