Enum roblox::enumeration::DeveloperMemoryTag [−][src]
pub enum DeveloperMemoryTag {}Show 22 variants
Internal, HttpCache, Instances, Signals, LuaHeap, Script, PhysicsCollision, PhysicsParts, GraphicsSolidModels, GraphicsMeshParts, GraphicsParticles, GraphicsParts, GraphicsSpatialHash, GraphicsTerrain, GraphicsTexture, GraphicsTextureCharacter, Sounds, StreamingSounds, TerrainVoxels, Gui, Animation, Navigation,
Expand description
The DeveloperMemoryTag enumeration.
Examples
Getting an EnumItem’s name:
assert_eq!(roblox::enums::DeveloperMemoryTag::Internal.name(), "Internal");
Getting an EnumItem’s value:
assert_eq!(roblox::enums::DeveloperMemoryTag::Internal.value(), Internal);
Getting all EnumItems:
let enum_items = roblox::enums::DeveloperMemoryTag::get_enum_items();
Variants
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DeveloperMemoryTag
impl Send for DeveloperMemoryTag
impl Sync for DeveloperMemoryTag
impl Unpin for DeveloperMemoryTag
impl UnwindSafe for DeveloperMemoryTag
Blanket Implementations
Mutably borrows from an owned value. Read more