Enum roblox::enumeration::Font [−][src]
pub enum Font {}Show 46 variants
Legacy, Arial, ArialBold, SourceSans, SourceSansBold, SourceSansSemibold, SourceSansLight, SourceSansItalic, Bodoni, Garamond, Cartoon, Code, Highway, SciFi, Arcade, Fantasy, Antique, Gotham, GothamSemibold, GothamBold, GothamBlack, AmaticSC, Bangers, Creepster, DenkOne, Fondamento, FredokaOne, GrenzeGotisch, IndieFlower, JosefinSans, Jura, Kalam, LuckiestGuy, Merriweather, Michroma, Nunito, Oswald, PatrickHand, PermanentMarker, Roboto, RobotoCondensed, RobotoMono, Sarpanch, SpecialElite, TitilliumWeb, Ubuntu,
Expand description
The Font enumeration.
Examples
Getting an EnumItem’s name:
assert_eq!(roblox::enums::Font::Legacy.name(), "Legacy");
Getting an EnumItem’s value:
assert_eq!(roblox::enums::Font::Legacy.value(), Legacy);
Getting all EnumItems:
let enum_items = roblox::enums::Font::get_enum_items();
Variants
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Font
impl UnwindSafe for Font
Blanket Implementations
Mutably borrows from an owned value. Read more