| //! An example of implementing Rust's standard formatting and parsing traits for flags types. |
| fn main() -> Result<(), bitflags::parser::ParseError> { |
| // You can `#[derive]` the `Debug` trait, but implementing it manually |
| // can produce output like `A | B` instead of `Flags(A | B)`. |
| impl fmt::Debug for Flags { |
| fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| fmt::Debug::fmt(&self.0, f) |
| impl fmt::Display for Flags { |
| fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| fmt::Display::fmt(&self.0, f) |
| impl str::FromStr for Flags { |
| type Err = bitflags::parser::ParseError; |
| fn from_str(flags: &str) -> Result<Self, Self::Err> { |
| let flags = Flags::A | Flags::B; |
| let formatted = flags.to_string(); |
| let parsed: Flags = formatted.parse()?; |
| assert_eq!(flags, parsed); |