Skip to main content

broot/flag/
mod.rs

1/// Right now the flag is just a vessel for display.
2#[derive(Clone, Copy)]
3pub struct Flag {
4    pub name: &'static str,
5    pub value: &'static str,
6}