pub trait FlagSet {
// Required methods
fn contains_flag(&self, token: &str) -> bool;
fn contains_short(&self, byte: u8) -> bool;
}pub trait FlagSet {
// Required methods
fn contains_flag(&self, token: &str) -> bool;
fn contains_short(&self, byte: u8) -> bool;
}