#[repr(C)]pub struct _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions {
pub ApiVersion: i32,
pub StartTime: i64,
pub EndTime: i64,
pub LocalUserId: EOS_ProductUserId,
}Expand description
Input parameters for the EOS_Leaderboards_QueryLeaderboardDefinitions function. StartTime and EndTime are optional parameters, they can be used to limit the list of definitions to overlap the time window specified.
Fields§
§ApiVersion: i32API Version: Set this to EOS_LEADERBOARDS_QUERYLEADERBOARDDEFINITIONS_API_LATEST.
StartTime: i64An optional POSIX timestamp for the leaderboard’s start time, or EOS_LEADERBOARDS_TIME_UNDEFINED
EndTime: i64An optional POSIX timestamp for the leaderboard’s end time, or EOS_LEADERBOARDS_TIME_UNDEFINED
LocalUserId: EOS_ProductUserIdProduct User ID for user who is querying definitions. Must be set when using a client policy that requires a valid logged in user. Not used for Dedicated Server where no user is available.
Trait Implementations§
Source§impl Clone for _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
impl Clone for _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
Source§fn clone(&self) -> _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
fn clone(&self) -> _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
impl RefUnwindSafe for _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
impl !Send for _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
impl !Sync for _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
impl Unpin for _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
impl UnsafeUnpin for _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
impl UnwindSafe for _tagEOS_Leaderboards_QueryLeaderboardDefinitionsOptions
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