#[repr(C)]pub struct _tagEOS_Leaderboards_Definition {
pub ApiVersion: i32,
pub LeaderboardId: *const c_char,
pub StatName: *const c_char,
pub Aggregation: EOS_ELeaderboardAggregation,
pub StartTime: i64,
pub EndTime: i64,
}Expand description
Contains information about a single leaderboard definition
Fields§
§ApiVersion: i32API Version: Set this to EOS_LEADERBOARDS_DEFINITION_API_LATEST.
LeaderboardId: *const c_charUnique ID to identify leaderboard.
StatName: *const c_charName of stat used to rank leaderboard.
Aggregation: EOS_ELeaderboardAggregationAggregation used to sort leaderboard.
StartTime: i64The POSIX timestamp for the start time, or EOS_LEADERBOARDS_TIME_UNDEFINED.
EndTime: i64The POSIX timestamp for the end time, or EOS_LEADERBOARDS_TIME_UNDEFINED.
Trait Implementations§
Source§impl Clone for _tagEOS_Leaderboards_Definition
impl Clone for _tagEOS_Leaderboards_Definition
Source§fn clone(&self) -> _tagEOS_Leaderboards_Definition
fn clone(&self) -> _tagEOS_Leaderboards_Definition
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_Definition
Auto Trait Implementations§
impl Freeze for _tagEOS_Leaderboards_Definition
impl RefUnwindSafe for _tagEOS_Leaderboards_Definition
impl !Send for _tagEOS_Leaderboards_Definition
impl !Sync for _tagEOS_Leaderboards_Definition
impl Unpin for _tagEOS_Leaderboards_Definition
impl UnsafeUnpin for _tagEOS_Leaderboards_Definition
impl UnwindSafe for _tagEOS_Leaderboards_Definition
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