pub struct GatewayHealth {
pub state: GatewayState,
pub endpoint: Option<String>,
pub version: Option<String>,
pub evidence: String,
pub checked_at_ms: u64,
}Expand description
ORCH-17: gateway on a harness.v1.harnesses.list row.
Fields§
§state: GatewayState§endpoint: Option<String>The endpoint supercode would connect to (OpenClaw: the gateway
WebSocket resolved from openclaw.json; core harnesses: their
declared connect address when one exists). None when the harness
has no single endpoint (Hermes multiplexes platforms).
version: Option<String>§evidence: StringWhat the verdict rests on, or why it is unknown.
checked_at_ms: u64Trait Implementations§
Source§impl Clone for GatewayHealth
impl Clone for GatewayHealth
Source§fn clone(&self) -> GatewayHealth
fn clone(&self) -> GatewayHealth
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 GatewayHealth
impl Debug for GatewayHealth
Auto Trait Implementations§
impl Freeze for GatewayHealth
impl RefUnwindSafe for GatewayHealth
impl Send for GatewayHealth
impl Sync for GatewayHealth
impl Unpin for GatewayHealth
impl UnsafeUnpin for GatewayHealth
impl UnwindSafe for GatewayHealth
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