pub struct SkyblockPet {
pub internal_id: String,
pub name: Option<String>,
pub category: Option<String>,
pub source: Option<String>,
pub min_level: u8,
pub max_level: u8,
pub base_stats: Vec<String>,
pub pet_flags: Option<PetFlags>,
pub rarities: HashMap<String, PetRarity>,
}Fields§
§internal_id: String§name: Option<String>§category: Option<String>§source: Option<String>§min_level: u8§max_level: u8§base_stats: Vec<String>§pet_flags: Option<PetFlags>§rarities: HashMap<String, PetRarity>Trait Implementations§
Source§impl Clone for SkyblockPet
impl Clone for SkyblockPet
Source§fn clone(&self) -> SkyblockPet
fn clone(&self) -> SkyblockPet
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 SkyblockPet
impl Debug for SkyblockPet
Source§impl<'de> Deserialize<'de> for SkyblockPet
impl<'de> Deserialize<'de> for SkyblockPet
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 SkyblockPet
impl PartialEq for SkyblockPet
Source§impl Serialize for SkyblockPet
impl Serialize for SkyblockPet
impl StructuralPartialEq for SkyblockPet
Auto Trait Implementations§
impl Freeze for SkyblockPet
impl RefUnwindSafe for SkyblockPet
impl Send for SkyblockPet
impl Sync for SkyblockPet
impl Unpin for SkyblockPet
impl UnwindSafe for SkyblockPet
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