pub enum ClientKind {
Host,
Renderer,
Srv,
Tool,
}Expand description
Stable identifier for a connected client. Tagged so the launcher can route replies + log who said what.
Variants§
Host
The CEF host process (one per launcher run).
Renderer
A frontend renderer (proxied via the host’s CEF JS bridge — Phase B.7).
Srv
The agentmux-srv backend (proxy connection used for Quit ack
- process-tree facts; the workspace data path stays on HTTP/WS through host).
Tool
External tooling (agentmux.exe --diag etc.).
Trait Implementations§
Source§impl Clone for ClientKind
impl Clone for ClientKind
Source§fn clone(&self) -> ClientKind
fn clone(&self) -> ClientKind
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 ClientKind
impl Debug for ClientKind
Source§impl<'de> Deserialize<'de> for ClientKind
impl<'de> Deserialize<'de> for ClientKind
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 Hash for ClientKind
impl Hash for ClientKind
Source§impl PartialEq for ClientKind
impl PartialEq for ClientKind
Source§impl Serialize for ClientKind
impl Serialize for ClientKind
impl Copy for ClientKind
impl Eq for ClientKind
impl StructuralPartialEq for ClientKind
Auto Trait Implementations§
impl Freeze for ClientKind
impl RefUnwindSafe for ClientKind
impl Send for ClientKind
impl Sync for ClientKind
impl Unpin for ClientKind
impl UnwindSafe for ClientKind
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