pub struct LocalShellCallOutput {
pub action: LocalShellAction,
pub call_id: String,
pub id: String,
pub status: String,
}
Expand description
Output of a local shell command request.
Fields§
§action: LocalShellAction
Details of the exec action.
call_id: String
Unique call identifier for responding to the tool call.
id: String
Unique ID of the local shell call.
status: String
Status of the local shell call.
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 · 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
Source§impl PartialEq for LocalShellCallOutput
impl PartialEq for LocalShellCallOutput
Source§impl Serialize for LocalShellCallOutput
impl Serialize for LocalShellCallOutput
impl StructuralPartialEq for LocalShellCallOutput
Auto Trait Implementations§
impl Freeze for LocalShellCallOutput
impl RefUnwindSafe for LocalShellCallOutput
impl Send for LocalShellCallOutput
impl Sync for LocalShellCallOutput
impl Unpin 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