aboutsummaryrefslogtreecommitdiff
path: root/src/flags.rs
blob: 504f0f900ba28151a28d680407db9448ab5a4254 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[derive(Debug)]
pub struct Flags {
	pub encode: bool,
	pub individual: bool,
	pub nul: bool
}

impl Default for Flags {
	fn default() -> Flags {
		Flags {
			encode: false,
			individual: false,
			nul: false
		}
	}
}