dbcfcfa109
* More warning fixes * Should be the last of the warning fixes * Code cleanup * Code formatting
10 lines
189 B
Rust
10 lines
189 B
Rust
use std::default::Default;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
pub struct Flags {
|
|
pub flag: String,
|
|
pub value: String,
|
|
}
|