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