pub trait FlagSet {
// Required methods
fn contains_flag(&self, token: &str) -> bool;
fn contains_short(&self, byte: u8) -> bool;
}Required Methods§
fn contains_flag(&self, token: &str) -> bool
fn contains_short(&self, byte: u8) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".