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