pub struct ReadyMsg {
pub peer_id: u16,
pub cell_name: String,
pub pid: Option<u32>,
pub version: Option<String>,
pub features: Vec<String>,
}Expand description
Message sent by cell to indicate it’s ready to handle RPC requests
Fields§
§peer_id: u16Authoritative peer ID assigned by host
cell_name: StringCell name (e.g. “ddc-cell-markdown”, “ddc-cell-http”)
pid: Option<u32>Process ID (optional, for diagnostics)
version: Option<String>Version (optional, e.g. git SHA or crate version)
features: Vec<String>Feature flags (optional; can be empty)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReadyMsg
impl RefUnwindSafe for ReadyMsg
impl Send for ReadyMsg
impl Sync for ReadyMsg
impl Unpin for ReadyMsg
impl UnwindSafe for ReadyMsg
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