pub struct ToolExecutionEntry {
pub object: Option<Object>,
pub type: Option<Type>,
pub created_at: Option<String>,
pub completed_at: Option<Option<String>>,
pub agent_id: Option<Option<String>>,
pub model: Option<Option<String>>,
pub id: Option<String>,
pub name: Box<Name>,
pub arguments: String,
pub info: Option<HashMap<String, Value>>,
}Fields§
§object: Option<Object>§type: Option<Type>§created_at: Option<String>§completed_at: Option<Option<String>>§agent_id: Option<Option<String>>§model: Option<Option<String>>§id: Option<String>§name: Box<Name>§arguments: String§info: Option<HashMap<String, Value>>Implementations§
Source§impl ToolExecutionEntry
impl ToolExecutionEntry
pub fn new(name: Name, arguments: String) -> ToolExecutionEntry
Trait Implementations§
Source§impl Clone for ToolExecutionEntry
impl Clone for ToolExecutionEntry
Source§fn clone(&self) -> ToolExecutionEntry
fn clone(&self) -> ToolExecutionEntry
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 ToolExecutionEntry
impl Debug for ToolExecutionEntry
Source§impl Default for ToolExecutionEntry
impl Default for ToolExecutionEntry
Source§fn default() -> ToolExecutionEntry
fn default() -> ToolExecutionEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToolExecutionEntry
impl<'de> Deserialize<'de> for ToolExecutionEntry
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 ToolExecutionEntry
impl PartialEq for ToolExecutionEntry
Source§impl Serialize for ToolExecutionEntry
impl Serialize for ToolExecutionEntry
impl StructuralPartialEq for ToolExecutionEntry
Auto Trait Implementations§
impl Freeze for ToolExecutionEntry
impl RefUnwindSafe for ToolExecutionEntry
impl Send for ToolExecutionEntry
impl Sync for ToolExecutionEntry
impl Unpin for ToolExecutionEntry
impl UnsafeUnpin for ToolExecutionEntry
impl UnwindSafe for ToolExecutionEntry
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