pub struct PokedexStats {
pub hp: String,
pub attack: String,
pub defense: String,
pub sp_atk: String,
pub sp_def: String,
pub speed: String,
pub total: String,
}
Fields§
§hp: String
§attack: String
§defense: String
§sp_atk: String
§sp_def: String
§speed: String
§total: String
Trait Implementations§
Source§impl Debug for PokedexStats
impl Debug for PokedexStats
Source§impl<'de> Deserialize<'de> for PokedexStats
impl<'de> Deserialize<'de> for PokedexStats
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 PokedexStats
impl RefUnwindSafe for PokedexStats
impl Send for PokedexStats
impl Sync for PokedexStats
impl Unpin for PokedexStats
impl UnwindSafe for PokedexStats
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