diff --git a/src/types/response.rs b/src/types/response.rs index a001cfe..d786abc 100644 --- a/src/types/response.rs +++ b/src/types/response.rs @@ -59,9 +59,9 @@ impl RpcResponseArgument for BlocklistUpdate {} #[derive(Deserialize, Debug, Clone)] pub struct FreeSpace { - path: String, + pub path: String, #[serde(rename = "size-bytes")] - size_bytes: i64, + pub size_bytes: i64, } impl RpcResponseArgument for FreeSpace {}