pub struct LocalShellCallOutput {
pub id: String,
pub output: String,
pub type_: String,
pub status: Option<LocalShellCallOutputStatus>,
}Expand description
The output of a local shell tool call.
Fields§
§id: StringThe unique ID of the local shell tool call generated by the model.
output: StringA JSON string of the output of the local shell tool call.
type_: StringThe type of the local shell tool call output. Always local_shell_call_output.
status: Option<LocalShellCallOutputStatus>The status of the item. One of in_progress, completed, or incomplete.
Trait Implementations§
Source§impl Clone for LocalShellCallOutput
impl Clone for LocalShellCallOutput
Source§fn clone(&self) -> LocalShellCallOutput
fn clone(&self) -> LocalShellCallOutput
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 LocalShellCallOutput
impl Debug for LocalShellCallOutput
Source§impl<'de> Deserialize<'de> for LocalShellCallOutput
impl<'de> Deserialize<'de> for LocalShellCallOutput
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 LocalShellCallOutput
impl RefUnwindSafe for LocalShellCallOutput
impl Send for LocalShellCallOutput
impl Sync for LocalShellCallOutput
impl Unpin for LocalShellCallOutput
impl UnsafeUnpin for LocalShellCallOutput
impl UnwindSafe for LocalShellCallOutput
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