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