Make FreeSpace's fields public.

This commit is contained in:
Quang Ngô 2021-11-19 18:35:56 +07:00 committed by Aleksandr
parent 1e603ff839
commit 4ac95a6ffa

View File

@ -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 {}