pub struct SkyblockZone {
pub internal_id: String,
pub name: Option<String>,
pub source: Option<String>,
pub discovery_text: Option<String>,
pub npcs: Vec<Value>,
pub mobs: Vec<Value>,
pub mob_drops: Vec<Value>,
pub fairy_souls: Vec<FairySoul>,
}Fields§
§internal_id: String§name: Option<String>§source: Option<String>§discovery_text: Option<String>§npcs: Vec<Value>§mobs: Vec<Value>§mob_drops: Vec<Value>§fairy_souls: Vec<FairySoul>Trait Implementations§
Source§impl Clone for SkyblockZone
impl Clone for SkyblockZone
Source§fn clone(&self) -> SkyblockZone
fn clone(&self) -> SkyblockZone
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 SkyblockZone
impl Debug for SkyblockZone
Source§impl<'de> Deserialize<'de> for SkyblockZone
impl<'de> Deserialize<'de> for SkyblockZone
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 SkyblockZone
impl PartialEq for SkyblockZone
Source§impl Serialize for SkyblockZone
impl Serialize for SkyblockZone
impl StructuralPartialEq for SkyblockZone
Auto Trait Implementations§
impl Freeze for SkyblockZone
impl RefUnwindSafe for SkyblockZone
impl Send for SkyblockZone
impl Sync for SkyblockZone
impl Unpin for SkyblockZone
impl UnwindSafe for SkyblockZone
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