pub struct HeartbeatEvent {
pub ts: i64,
pub proxy: String,
pub mcp_status: String,
pub tunnel_status: String,
pub widgets_status: String,
pub uptime_secs: u64,
pub request_count: u64,
}Expand description
Periodic health snapshot.
Fields§
§ts: i64§proxy: String§mcp_status: String§tunnel_status: String§widgets_status: String§uptime_secs: u64§request_count: u64Trait Implementations§
Source§impl Clone for HeartbeatEvent
impl Clone for HeartbeatEvent
Source§fn clone(&self) -> HeartbeatEvent
fn clone(&self) -> HeartbeatEvent
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 HeartbeatEvent
impl Debug for HeartbeatEvent
Auto Trait Implementations§
impl Freeze for HeartbeatEvent
impl RefUnwindSafe for HeartbeatEvent
impl Send for HeartbeatEvent
impl Sync for HeartbeatEvent
impl Unpin for HeartbeatEvent
impl UnsafeUnpin for HeartbeatEvent
impl UnwindSafe for HeartbeatEvent
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