Skip to main content

Mountain/IPC/StatusReporter/
ConnectionStatus.rs

1
2//! Connectivity slice of `IPCStatusReport::Struct` - is the
3//! IPC server reachable, when did it last heartbeat, and how
4//! long has the current connection been alive.
5
6use serde::{Deserialize, Serialize};
7
8#[derive(Debug, Clone, Serialize, Deserialize)]
9pub struct Struct {
10	pub is_connected:bool,
11
12	pub last_heartbeat:u64,
13
14	pub connection_duration:u64,
15}