Function export_flags
pub fn export_flags<T>(bits: &[T]) -> PropertyHintInfoExpand description
Equivalent to @export_flags in Godot.
A flag without a key would be represented as (flag, None), and a flag with a key as (flag, Some(key)).
ยงExamples
export_flags(&[("a", None), ("b", Some(10))]);