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