diff options
Diffstat (limited to 'src/model/bucket_table.rs')
-rw-r--r-- | src/model/bucket_table.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model/bucket_table.rs b/src/model/bucket_table.rs index 306a58ab..e9d574c5 100644 --- a/src/model/bucket_table.rs +++ b/src/model/bucket_table.rs @@ -95,9 +95,9 @@ mod v08 { /// If Some(x), object key has to start with prefix x pub prefix: Option<String>, /// If Some(x), object size has to be more than x - pub size_gt: Option<usize>, + pub size_gt: Option<u64>, /// If Some(x), object size has to be less than x - pub size_lt: Option<usize>, + pub size_lt: Option<u64>, } #[derive(PartialEq, Eq, Clone, Debug, Serialize, Deserialize)] |