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