pub enum ScopedKind {
AgentTextDelta(String),
DynamicToolCall(DynamicToolCall),
TurnCompleted(TurnCompleted),
TurnStarted,
Error(ServerError),
}Variants§
AgentTextDelta(String)
DynamicToolCall(DynamicToolCall)
TurnCompleted(TurnCompleted)
TurnStarted
Error(ServerError)
Trait Implementations§
Source§impl Clone for ScopedKind
impl Clone for ScopedKind
Source§fn clone(&self) -> ScopedKind
fn clone(&self) -> ScopedKind
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 ScopedKind
impl Debug for ScopedKind
Source§impl PartialEq for ScopedKind
impl PartialEq for ScopedKind
impl StructuralPartialEq for ScopedKind
Auto Trait Implementations§
impl Freeze for ScopedKind
impl RefUnwindSafe for ScopedKind
impl Send for ScopedKind
impl Sync for ScopedKind
impl Unpin for ScopedKind
impl UnsafeUnpin for ScopedKind
impl UnwindSafe for ScopedKind
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