#[repr(C)]pub struct _tagEOS_Achievements_PlayerStatInfo {
pub ApiVersion: i32,
pub Name: *const c_char,
pub CurrentValue: i32,
pub ThresholdValue: i32,
}Expand description
Contains information about a collection of stat info data.
@see EOS_Achievements_PlayerAchievement
Fields§
§ApiVersion: i32API Version: Set this to EOS_ACHIEVEMENTS_PLAYERSTATINFO_API_LATEST.
Name: *const c_charThe name of the stat.
CurrentValue: i32The current value of the stat.
ThresholdValue: i32The threshold value of the stat, used in determining when to unlock an achievement.
Trait Implementations§
Source§impl Clone for _tagEOS_Achievements_PlayerStatInfo
impl Clone for _tagEOS_Achievements_PlayerStatInfo
Source§fn clone(&self) -> _tagEOS_Achievements_PlayerStatInfo
fn clone(&self) -> _tagEOS_Achievements_PlayerStatInfo
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_Achievements_PlayerStatInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_Achievements_PlayerStatInfo
impl RefUnwindSafe for _tagEOS_Achievements_PlayerStatInfo
impl !Send for _tagEOS_Achievements_PlayerStatInfo
impl !Sync for _tagEOS_Achievements_PlayerStatInfo
impl Unpin for _tagEOS_Achievements_PlayerStatInfo
impl UnsafeUnpin for _tagEOS_Achievements_PlayerStatInfo
impl UnwindSafe for _tagEOS_Achievements_PlayerStatInfo
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