netutils-cli 0.3.0

跨平台网络诊断工具集:接口、路由、出口、代理、Ping、DNS、Traceroute、端口扫描、连通性、连接列表、全链路诊断
1
2
3
4
5
6
7
8
9
10
11
12
//! 路由表信息模块(公共结构)。

use serde::Serialize;

/// 路由条目
#[derive(Debug, Clone, Serialize)]
pub struct RouteEntry {
    pub destination: String,
    pub gateway: String,
    pub interface: String,
    pub metric: String,
}