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