pub struct ChampStats {
pub wins: i64,
pub losses: i64,
pub kills: i64,
pub deaths: i64,
pub assists: i64,
}Fields§
§wins: i64§losses: i64§kills: i64§deaths: i64§assists: i64Implementations§
Source§impl ChampStats
impl ChampStats
pub fn empty() -> ChampStats
Trait Implementations§
Source§impl Clone for ChampStats
impl Clone for ChampStats
Source§fn clone(&self) -> ChampStats
fn clone(&self) -> ChampStats
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 ChampStats
impl RefUnwindSafe for ChampStats
impl Send for ChampStats
impl Sync for ChampStats
impl Unpin for ChampStats
impl UnwindSafe for ChampStats
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