pub struct SessionNextToolSuccessData {
pub assistant_message_id: String,
pub call_id: String,
pub content: Vec<LLMToolContent>,
pub output_paths: Option<Vec<String>>,
pub provider: SessionNextToolFailedDataProvider,
pub result: Option<Value>,
pub session_id: String,
pub structured: Map<String, Value>,
pub timestamp: f64,
}Fields§
§assistant_message_id: String§call_id: String§content: Vec<LLMToolContent>§output_paths: Option<Vec<String>>§provider: SessionNextToolFailedDataProvider§result: Option<Value>§session_id: String§structured: Map<String, Value>§timestamp: f64Trait Implementations§
Source§impl Clone for SessionNextToolSuccessData
impl Clone for SessionNextToolSuccessData
Source§fn clone(&self) -> SessionNextToolSuccessData
fn clone(&self) -> SessionNextToolSuccessData
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 SessionNextToolSuccessData
impl Debug for SessionNextToolSuccessData
Source§impl<'de> Deserialize<'de> for SessionNextToolSuccessData
impl<'de> Deserialize<'de> for SessionNextToolSuccessData
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 SessionNextToolSuccessData
Auto Trait Implementations§
impl Freeze for SessionNextToolSuccessData
impl RefUnwindSafe for SessionNextToolSuccessData
impl Send for SessionNextToolSuccessData
impl Sync for SessionNextToolSuccessData
impl Unpin for SessionNextToolSuccessData
impl UnsafeUnpin for SessionNextToolSuccessData
impl UnwindSafe for SessionNextToolSuccessData
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