pub struct TurnOutput {
pub result: TurnResult,
pub activities: Vec<TurnActivity>,
}Fields§
§result: TurnResult§activities: Vec<TurnActivity>Implementations§
Source§impl TurnOutput
impl TurnOutput
pub fn assistant_message(&self) -> Option<&str>
pub fn submitted_value(&self) -> Option<&Value>
pub fn tool_value(&self) -> Option<(&str, &Value)>
pub fn is_success(&self) -> bool
Trait Implementations§
Source§impl Clone for TurnOutput
impl Clone for TurnOutput
Source§fn clone(&self) -> TurnOutput
fn clone(&self) -> TurnOutput
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 TurnOutput
impl Debug for TurnOutput
Source§impl<'de> Deserialize<'de> for TurnOutput
impl<'de> Deserialize<'de> for TurnOutput
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 TurnOutput
impl RefUnwindSafe for TurnOutput
impl Send for TurnOutput
impl Sync for TurnOutput
impl Unpin for TurnOutput
impl UnsafeUnpin for TurnOutput
impl UnwindSafe for TurnOutput
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