pub struct RegionMasteryPoints {
pub region: String,
pub spent: u64,
pub earned: u64,
}
Fields§
§region: String
The mastery region.
spent: u64
The number of mastery points spent in mastery tracks.
earned: u64
The number of mastery points unlocked.
Trait Implementations§
Source§impl Clone for RegionMasteryPoints
impl Clone for RegionMasteryPoints
Source§fn clone(&self) -> RegionMasteryPoints
fn clone(&self) -> RegionMasteryPoints
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 moreSource§impl Debug for RegionMasteryPoints
impl Debug for RegionMasteryPoints
Source§impl<'de> Deserialize<'de> for RegionMasteryPoints
impl<'de> Deserialize<'de> for RegionMasteryPoints
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RegionMasteryPoints
impl RefUnwindSafe for RegionMasteryPoints
impl Send for RegionMasteryPoints
impl Sync for RegionMasteryPoints
impl Unpin for RegionMasteryPoints
impl UnwindSafe for RegionMasteryPoints
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