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