Skip to main content

ServerEvent

Enum ServerEvent 

Source
pub enum ServerEvent {
Show 23 variants Initialized { request_id: String, protocol_version: u32, server: PeerInfo, }, SessionStarted { request_id: String, session_id: String, cwd: String, model: String, context_max_tokens: usize, max_server_frame_bytes: usize, max_transcript_bytes: usize, max_transcript_items: usize, max_prompt_history_bytes: usize, max_prompt_history_items: usize, }, QueueSnapshot { request_id: Option<String>, session_id: String, seq: u64, entries: Vec<QueueEntry>, paused: bool, }, QueueEnqueued { request_id: String, session_id: String, seq: u64, entry: QueueEntry, position: usize, }, QueueUpdated { request_id: String, session_id: String, seq: u64, entry: QueueEntry, }, QueueMoved { request_id: String, session_id: String, seq: u64, queue_id: String, position: usize, revision: u64, }, QueueRemoved { request_id: String, session_id: String, seq: u64, queue_id: String, revision: u64, }, QueueDequeued { request_id: String, session_id: String, seq: u64, queue_id: String, turn_id: String, }, SessionPaused { request_id: String, session_id: String, seq: u64, paused: bool, }, TurnStarted { request_id: String, session_id: String, turn_id: String, seq: u64, }, AssistantDelta { request_id: String, session_id: String, turn_id: String, seq: u64, content: String, }, AssistantCompleted { request_id: String, session_id: String, turn_id: String, seq: u64, content: String, }, ToolProposed { request_id: String, session_id: String, turn_id: String, seq: u64, call_id: String, name: String, arguments: Value, }, ApprovalRequested { request_id: String, session_id: String, turn_id: String, seq: u64, approval_id: String, call_id: String, name: String, risk: String, cwd: String, summary: String, }, ToolStarted { request_id: String, session_id: String, turn_id: String, seq: u64, call_id: String, name: String, }, ToolCompleted { request_id: String, session_id: String, turn_id: String, seq: u64, call_id: String, name: String, success: bool, output: String, truncated: bool, }, ContextCompacted { request_id: String, session_id: String, turn_id: String, seq: u64, before_tokens: usize, after_tokens: usize, removed_messages: usize, }, SessionTrimmed { request_id: String, session_id: String, seq: u64, removed_messages: usize, history_bytes: usize, }, SessionCleared { request_id: String, session_id: String, seq: u64, }, TurnCompleted { request_id: String, session_id: String, turn_id: String, seq: u64, steps: usize, usage: Usage, }, TurnCancelled { request_id: String, session_id: String, turn_id: String, seq: u64, }, TurnFailed { request_id: String, session_id: String, turn_id: String, seq: u64, code: String, message: String, }, Error { request_id: Option<String>, code: String, message: String, fatal: bool, },
}

Variants§

§

Initialized

Fields

§request_id: String
§protocol_version: u32
§server: PeerInfo
§

SessionStarted

Fields

§request_id: String
§session_id: String
§model: String
§context_max_tokens: usize
§max_server_frame_bytes: usize
§max_transcript_bytes: usize
§max_transcript_items: usize
§max_prompt_history_bytes: usize
§max_prompt_history_items: usize
§

QueueSnapshot

Fields

§request_id: Option<String>
§session_id: String
§seq: u64
§entries: Vec<QueueEntry>
§paused: bool
§

QueueEnqueued

Fields

§request_id: String
§session_id: String
§seq: u64
§position: usize
§

QueueUpdated

Fields

§request_id: String
§session_id: String
§seq: u64
§

QueueMoved

Fields

§request_id: String
§session_id: String
§seq: u64
§queue_id: String
§position: usize
§revision: u64
§

QueueRemoved

Fields

§request_id: String
§session_id: String
§seq: u64
§queue_id: String
§revision: u64
§

QueueDequeued

Fields

§request_id: String
§session_id: String
§seq: u64
§queue_id: String
§turn_id: String
§

SessionPaused

Fields

§request_id: String
§session_id: String
§seq: u64
§paused: bool
§

TurnStarted

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§

AssistantDelta

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§content: String
§

AssistantCompleted

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§content: String
§

ToolProposed

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§call_id: String
§name: String
§arguments: Value
§

ApprovalRequested

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§approval_id: String
§call_id: String
§name: String
§risk: String
§summary: String
§

ToolStarted

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§call_id: String
§name: String
§

ToolCompleted

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§call_id: String
§name: String
§success: bool
§output: String
§truncated: bool
§

ContextCompacted

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§before_tokens: usize
§after_tokens: usize
§removed_messages: usize
§

SessionTrimmed

Fields

§request_id: String
§session_id: String
§seq: u64
§removed_messages: usize
§history_bytes: usize
§

SessionCleared

Fields

§request_id: String
§session_id: String
§seq: u64
§

TurnCompleted

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§steps: usize
§usage: Usage
§

TurnCancelled

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§

TurnFailed

Fields

§request_id: String
§session_id: String
§turn_id: String
§seq: u64
§code: String
§message: String
§

Error

Fields

§request_id: Option<String>
§code: String
§message: String
§fatal: bool

Trait Implementations§

Source§

impl Clone for ServerEvent

Source§

fn clone(&self) -> ServerEvent

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ServerEvent

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for ServerEvent

Source§

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 ServerEvent

Source§

fn eq(&self, other: &ServerEvent) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for ServerEvent

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for ServerEvent

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.