pub struct SteamStatistic {
pub statistic_id: u64,
pub name: String,
pub display: String,
pub aggregated: bool,
pub monotonic_increase: bool,
pub range: SteamStatisticsRange,
}Fields§
§statistic_id: u64WARNING: This ID shares the ID used for achievements. If there is a conflict, all achievements will be deleted.
name: String§display: String§aggregated: bool§monotonic_increase: bool§range: SteamStatisticsRangeImplementations§
Trait Implementations§
Source§impl Clone for SteamStatistic
impl Clone for SteamStatistic
Source§fn clone(&self) -> SteamStatistic
fn clone(&self) -> SteamStatistic
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 moreAuto Trait Implementations§
impl Freeze for SteamStatistic
impl RefUnwindSafe for SteamStatistic
impl Send for SteamStatistic
impl Sync for SteamStatistic
impl Unpin for SteamStatistic
impl UnwindSafe for SteamStatistic
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