pub struct PokeathlonStat {
pub id: i64,
pub name: String,
pub names: Vec<Name>,
pub affecting_natures: NaturePokeathlonStatAffectSets,
}
Expand description
Fields§
§id: i64
The identifier for this resource.
name: String
The name for this resource.
names: Vec<Name>
The name of this resource listed in different languages.
affecting_natures: NaturePokeathlonStatAffectSets
A detail of natures which affect this Pokéathlon stat positively or negatively.
Trait Implementations§
Source§impl Clone for PokeathlonStat
impl Clone for PokeathlonStat
Source§fn clone(&self) -> PokeathlonStat
fn clone(&self) -> PokeathlonStat
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 PokeathlonStat
impl Debug for PokeathlonStat
Source§impl<'de> Deserialize<'de> for PokeathlonStat
impl<'de> Deserialize<'de> for PokeathlonStat
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
Source§impl PartialEq for PokeathlonStat
impl PartialEq for PokeathlonStat
impl Eq for PokeathlonStat
impl StructuralPartialEq for PokeathlonStat
Auto Trait Implementations§
impl Freeze for PokeathlonStat
impl RefUnwindSafe for PokeathlonStat
impl Send for PokeathlonStat
impl Sync for PokeathlonStat
impl Unpin for PokeathlonStat
impl UnwindSafe for PokeathlonStat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.