pub enum PromptRunStreamEvent {
AgentMessageDelta(AgentMessageDeltaNotification),
TurnCompleted(TurnCompletedNotification),
TurnFailed(TurnFailedNotification),
TurnInterrupted(TurnInterruptedNotification),
TurnCancelled(TurnCancelledNotification),
}Variants§
AgentMessageDelta(AgentMessageDeltaNotification)
TurnCompleted(TurnCompletedNotification)
TurnFailed(TurnFailedNotification)
TurnInterrupted(TurnInterruptedNotification)
TurnCancelled(TurnCancelledNotification)
Trait Implementations§
Source§impl Clone for PromptRunStreamEvent
impl Clone for PromptRunStreamEvent
Source§fn clone(&self) -> PromptRunStreamEvent
fn clone(&self) -> PromptRunStreamEvent
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 PromptRunStreamEvent
impl Debug for PromptRunStreamEvent
Source§impl PartialEq for PromptRunStreamEvent
impl PartialEq for PromptRunStreamEvent
impl StructuralPartialEq for PromptRunStreamEvent
Auto Trait Implementations§
impl Freeze for PromptRunStreamEvent
impl RefUnwindSafe for PromptRunStreamEvent
impl Send for PromptRunStreamEvent
impl Sync for PromptRunStreamEvent
impl Unpin for PromptRunStreamEvent
impl UnsafeUnpin for PromptRunStreamEvent
impl UnwindSafe for PromptRunStreamEvent
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