pub struct ConversationEntryToolCall {
pub id: String,
pub name: String,
pub status: ConversationEntryToolCallStatus,
pub input: Option<String>,
pub output: Option<String>,
pub duration_ms: Option<i64>,
pub error: Option<String>,
}Expand description
ConversationEntryToolCall model.
Fields§
§id: String§name: String§status: ConversationEntryToolCallStatus§input: Option<String>§output: Option<String>§duration_ms: Option<i64>§error: Option<String>Trait Implementations§
Source§impl Clone for ConversationEntryToolCall
impl Clone for ConversationEntryToolCall
Source§fn clone(&self) -> ConversationEntryToolCall
fn clone(&self) -> ConversationEntryToolCall
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 ConversationEntryToolCall
impl Debug for ConversationEntryToolCall
Source§impl Default for ConversationEntryToolCall
impl Default for ConversationEntryToolCall
Source§fn default() -> ConversationEntryToolCall
fn default() -> ConversationEntryToolCall
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConversationEntryToolCall
impl<'de> Deserialize<'de> for ConversationEntryToolCall
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
impl StructuralPartialEq for ConversationEntryToolCall
Auto Trait Implementations§
impl Freeze for ConversationEntryToolCall
impl RefUnwindSafe for ConversationEntryToolCall
impl Send for ConversationEntryToolCall
impl Sync for ConversationEntryToolCall
impl Unpin for ConversationEntryToolCall
impl UnsafeUnpin for ConversationEntryToolCall
impl UnwindSafe for ConversationEntryToolCall
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