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