#[non_exhaustive]#[repr(u32)]pub enum EUGCQuery {
Show 20 variants
k_EUGCQuery_RankedByVote = 0,
k_EUGCQuery_RankedByPublicationDate = 1,
k_EUGCQuery_AcceptedForGameRankedByAcceptanceDate = 2,
k_EUGCQuery_RankedByTrend = 3,
k_EUGCQuery_FavoritedByFriendsRankedByPublicationDate = 4,
k_EUGCQuery_CreatedByFriendsRankedByPublicationDate = 5,
k_EUGCQuery_RankedByNumTimesReported = 6,
k_EUGCQuery_CreatedByFollowedUsersRankedByPublicationDate = 7,
k_EUGCQuery_NotYetRated = 8,
k_EUGCQuery_RankedByTotalVotesAsc = 9,
k_EUGCQuery_RankedByVotesUp = 10,
k_EUGCQuery_RankedByTextSearch = 11,
k_EUGCQuery_RankedByTotalUniqueSubscriptions = 12,
k_EUGCQuery_RankedByPlaytimeTrend = 13,
k_EUGCQuery_RankedByTotalPlaytime = 14,
k_EUGCQuery_RankedByAveragePlaytimeTrend = 15,
k_EUGCQuery_RankedByLifetimeAveragePlaytime = 16,
k_EUGCQuery_RankedByPlaytimeSessionsTrend = 17,
k_EUGCQuery_RankedByLifetimePlaytimeSessions = 18,
k_EUGCQuery_RankedByLastUpdatedDate = 19,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
k_EUGCQuery_RankedByVote = 0
k_EUGCQuery_RankedByPublicationDate = 1
k_EUGCQuery_AcceptedForGameRankedByAcceptanceDate = 2
k_EUGCQuery_RankedByTrend = 3
k_EUGCQuery_FavoritedByFriendsRankedByPublicationDate = 4
k_EUGCQuery_CreatedByFriendsRankedByPublicationDate = 5
k_EUGCQuery_RankedByNumTimesReported = 6
k_EUGCQuery_CreatedByFollowedUsersRankedByPublicationDate = 7
k_EUGCQuery_NotYetRated = 8
k_EUGCQuery_RankedByTotalVotesAsc = 9
k_EUGCQuery_RankedByVotesUp = 10
k_EUGCQuery_RankedByTextSearch = 11
k_EUGCQuery_RankedByTotalUniqueSubscriptions = 12
k_EUGCQuery_RankedByPlaytimeTrend = 13
k_EUGCQuery_RankedByTotalPlaytime = 14
k_EUGCQuery_RankedByAveragePlaytimeTrend = 15
k_EUGCQuery_RankedByLifetimeAveragePlaytime = 16
k_EUGCQuery_RankedByPlaytimeSessionsTrend = 17
k_EUGCQuery_RankedByLifetimePlaytimeSessions = 18
k_EUGCQuery_RankedByLastUpdatedDate = 19
Trait Implementations§
impl Copy for EUGCQuery
impl Eq for EUGCQuery
impl StructuralPartialEq for EUGCQuery
Auto Trait Implementations§
impl Freeze for EUGCQuery
impl RefUnwindSafe for EUGCQuery
impl Send for EUGCQuery
impl Sync for EUGCQuery
impl Unpin for EUGCQuery
impl UnsafeUnpin for EUGCQuery
impl UnwindSafe for EUGCQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more