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