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