mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-12 16:16:55 +00:00
10 lines
268 B
Rust
10 lines
268 B
Rust
use super::{prefix::Prefix, tag::Tag};
|
|
use serde::{Deserialize, Serialize};
|
|
#[derive(Debug, Deserialize, Serialize, Default)]
|
|
pub struct And {
|
|
pub object_size_greater_than: i64,
|
|
pub object_size_less_than: i64,
|
|
pub prefix: Prefix,
|
|
pub tags: Vec<Tag>,
|
|
}
|