pub struct HallOfFamePets {
pub name: String,
pub rank: u32,
pub guild: Option<String>,
pub collected: u32,
pub honor: u32,
pub unknown: i64,
}Expand description
Basic information about one players pet collection on the server
Fields§
§name: StringThe name of the player, that has these pets
rank: u32The rank of this players pet collection
guild: Option<String>If the player, that owns these pets is in a guild, this will contain the guild name
collected: u32The amount of pets collected
honor: u32The amount of honro this pet collection has gained
unknown: i64For guilds the value at this position is the attacked status, but no idea, what it means here
Trait Implementations§
Source§impl Clone for HallOfFamePets
impl Clone for HallOfFamePets
Source§fn clone(&self) -> HallOfFamePets
fn clone(&self) -> HallOfFamePets
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 HallOfFamePets
impl Debug for HallOfFamePets
Source§impl Default for HallOfFamePets
impl Default for HallOfFamePets
Source§fn default() -> HallOfFamePets
fn default() -> HallOfFamePets
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HallOfFamePets
impl<'de> Deserialize<'de> for HallOfFamePets
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 HallOfFamePets
impl RefUnwindSafe for HallOfFamePets
impl Send for HallOfFamePets
impl Sync for HallOfFamePets
impl Unpin for HallOfFamePets
impl UnwindSafe for HallOfFamePets
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