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