Enum roblox::enumeration::GearGenreSetting [−][src]
pub enum GearGenreSetting { AllGenres, MatchingGenreOnly, }
Expand description
The GearGenreSetting enumeration.
Examples
Getting an EnumItem’s name:
assert_eq!(roblox::enums::GearGenreSetting::AllGenres.name(), "AllGenres");
Getting an EnumItem’s value:
assert_eq!(roblox::enums::GearGenreSetting::AllGenres.value(), AllGenres);
Getting all EnumItems:
let enum_items = roblox::enums::GearGenreSetting::get_enum_items();
Variants
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for GearGenreSetting
impl Send for GearGenreSetting
impl Sync for GearGenreSetting
impl Unpin for GearGenreSetting
impl UnwindSafe for GearGenreSetting
Blanket Implementations
Mutably borrows from an owned value. Read more