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