We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2cdf172 + a140d37 commit eeee3acCopy full SHA for eeee3ac
src/hottier.rs
@@ -58,10 +58,11 @@ pub struct StreamHotTier {
58
pub version: Option<String>,
59
#[serde(with = "crate::utils::human_size")]
60
pub size: u64,
61
- #[serde(with = "crate::utils::human_size")]
+ #[serde(default, with = "crate::utils::human_size")]
62
pub used_size: u64,
63
64
pub available_size: u64,
65
+ #[serde(skip_serializing_if = "Option::is_none")]
66
pub oldest_date_time_entry: Option<String>,
67
}
68
0 commit comments