pub struct ThinkingEndEvent {
pub base: BaseEvent,
}Expand description
Event indicating that a thinking step has ended.
This event is sent when the agent completes a chain-of-thought reasoning step.
Fields§
§base: BaseEventCommon event fields (timestamp, rawEvent).
Implementations§
Source§impl ThinkingEndEvent
impl ThinkingEndEvent
Sourcepub fn with_timestamp(self, timestamp: f64) -> Self
pub fn with_timestamp(self, timestamp: f64) -> Self
Sets the timestamp for this event.
Trait Implementations§
Source§impl Clone for ThinkingEndEvent
impl Clone for ThinkingEndEvent
Source§fn clone(&self) -> ThinkingEndEvent
fn clone(&self) -> ThinkingEndEvent
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 ThinkingEndEvent
impl Debug for ThinkingEndEvent
Source§impl Default for ThinkingEndEvent
impl Default for ThinkingEndEvent
Source§impl<'de> Deserialize<'de> for ThinkingEndEvent
impl<'de> Deserialize<'de> for ThinkingEndEvent
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 ThinkingEndEvent
impl PartialEq for ThinkingEndEvent
Source§impl Serialize for ThinkingEndEvent
impl Serialize for ThinkingEndEvent
impl StructuralPartialEq for ThinkingEndEvent
Auto Trait Implementations§
impl Freeze for ThinkingEndEvent
impl RefUnwindSafe for ThinkingEndEvent
impl Send for ThinkingEndEvent
impl Sync for ThinkingEndEvent
impl Unpin for ThinkingEndEvent
impl UnsafeUnpin for ThinkingEndEvent
impl UnwindSafe for ThinkingEndEvent
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