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