//! An example on deriving the Default trait behavior when using with the [`bitflag`] macro.
use bitflag;
// You can add the Default trait to the list of derived traits. Doing so will make the default
// value to be an empty flag.
// But you can also choose one of your defined flags as the default value with the `#[default]`
// helper attribute, like in any enum definition.