pub struct PvpSeasonFlat {
pub id: i32,
pub milestone_season: i32,
pub alliance_achievement_id: i32,
pub horde_achievement_id: i32,
pub tier_rewards: Vec<PvpTierRewardEntry>,
}Expand description
The single current PvpSeason row with embedded tier rewards.
Fields§
§id: i32§milestone_season: i32§alliance_achievement_id: i32§horde_achievement_id: i32§tier_rewards: Vec<PvpTierRewardEntry>Trait Implementations§
Source§impl Clone for PvpSeasonFlat
impl Clone for PvpSeasonFlat
Source§fn clone(&self) -> PvpSeasonFlat
fn clone(&self) -> PvpSeasonFlat
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 CopyInsert for PvpSeasonFlat
impl CopyInsert for PvpSeasonFlat
Source§impl Debug for PvpSeasonFlat
impl Debug for PvpSeasonFlat
Source§impl Default for PvpSeasonFlat
impl Default for PvpSeasonFlat
Source§fn default() -> PvpSeasonFlat
fn default() -> PvpSeasonFlat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PvpSeasonFlat
impl<'de> Deserialize<'de> for PvpSeasonFlat
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 PvpSeasonFlat
impl RefUnwindSafe for PvpSeasonFlat
impl Send for PvpSeasonFlat
impl Sync for PvpSeasonFlat
impl Unpin for PvpSeasonFlat
impl UnsafeUnpin for PvpSeasonFlat
impl UnwindSafe for PvpSeasonFlat
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