pub struct SlayerData {
pub slayer_bosses: HashMap<String, SlayerBossProgress>,
pub extra: JsonObject,
}Expand description
The slayer section of a member.
Fields§
§slayer_bosses: HashMap<String, SlayerBossProgress>Per-boss progress keyed by boss name (zombie, spider, wolf,
enderman, blaze, vampire).
extra: JsonObjectTrait Implementations§
Source§impl Clone for SlayerData
impl Clone for SlayerData
Source§fn clone(&self) -> SlayerData
fn clone(&self) -> SlayerData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SlayerData
impl Debug for SlayerData
Source§impl Default for SlayerData
impl Default for SlayerData
Source§fn default() -> SlayerData
fn default() -> SlayerData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SlayerData
impl<'de> Deserialize<'de> for SlayerData
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 SlayerData
impl RefUnwindSafe for SlayerData
impl Send for SlayerData
impl Sync for SlayerData
impl Unpin for SlayerData
impl UnsafeUnpin for SlayerData
impl UnwindSafe for SlayerData
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