pub enum GatewayEvent {
ContentDelta(String),
ReasoningDelta(String),
ToolStarted {
id: String,
name: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for GatewayEvent
impl Clone for GatewayEvent
Source§fn clone(&self) -> GatewayEvent
fn clone(&self) -> GatewayEvent
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 GatewayEvent
impl Debug for GatewayEvent
Source§impl PartialEq for GatewayEvent
impl PartialEq for GatewayEvent
impl StructuralPartialEq for GatewayEvent
Auto Trait Implementations§
impl Freeze for GatewayEvent
impl RefUnwindSafe for GatewayEvent
impl Send for GatewayEvent
impl Sync for GatewayEvent
impl Unpin for GatewayEvent
impl UnsafeUnpin for GatewayEvent
impl UnwindSafe for GatewayEvent
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