1 2 3 4 5 6 7
use serde::{Deserialize, Serialize}; #[derive(Default, Debug, Serialize, Deserialize)] /// RemoteSocket describes information about the API socket pub struct RemoteSocket { pub exists: Option<bool>, pub path: Option<String>, }