mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-19 02:56:18 +00:00
8 lines
157 B
Rust
8 lines
157 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Deserialize, Serialize, Default, Clone)]
|
|
pub struct Prefix {
|
|
pub val: String,
|
|
pub set: bool,
|
|
}
|