pub struct PlaytimeInfo {
pub playtime_forever: i32,
pub rtime_last_played: u32,
}Fields§
§playtime_forever: i32§rtime_last_played: u32Trait Implementations§
Source§impl Clone for PlaytimeInfo
impl Clone for PlaytimeInfo
Source§fn clone(&self) -> PlaytimeInfo
fn clone(&self) -> PlaytimeInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PlaytimeInfo
Source§impl Debug for PlaytimeInfo
impl Debug for PlaytimeInfo
Source§impl Default for PlaytimeInfo
impl Default for PlaytimeInfo
Source§fn default() -> PlaytimeInfo
fn default() -> PlaytimeInfo
Returns the “default value” for a type. Read more
impl Eq for PlaytimeInfo
Source§impl PartialEq for PlaytimeInfo
impl PartialEq for PlaytimeInfo
Source§fn eq(&self, other: &PlaytimeInfo) -> bool
fn eq(&self, other: &PlaytimeInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlaytimeInfo
Auto Trait Implementations§
impl Freeze for PlaytimeInfo
impl RefUnwindSafe for PlaytimeInfo
impl Send for PlaytimeInfo
impl Sync for PlaytimeInfo
impl Unpin for PlaytimeInfo
impl UnsafeUnpin for PlaytimeInfo
impl UnwindSafe for PlaytimeInfo
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