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