1 2 3 4 5 6 7 8
use std::net::IpAddr; #[derive(Clone, Debug)] pub struct ClientInfo { pub ip: IpAddr, pub connection_id: String, pub database: String, }