podman_rest_client/v5/models/
remote_socket.rs

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}