pub struct SkyblockItem {
pub internal_id: String,
pub name: Option<String>,
pub category: Option<String>,
pub source: Option<String>,
pub npc_value: Option<f64>,
pub lore: Option<String>,
pub flags: Option<ItemFlags>,
pub data: Option<ItemResponse>,
pub template_data: Option<ItemTemplate>,
pub recipes: Vec<SkyblockRecipe>,
}Fields§
§internal_id: String§name: Option<String>§category: Option<String>§source: Option<String>§npc_value: Option<f64>§lore: Option<String>§flags: Option<ItemFlags>§data: Option<ItemResponse>Hypixel item data from /resources/skyblock/items
template_data: Option<ItemTemplate>§recipes: Vec<SkyblockRecipe>Trait Implementations§
Source§impl Clone for SkyblockItem
impl Clone for SkyblockItem
Source§fn clone(&self) -> SkyblockItem
fn clone(&self) -> SkyblockItem
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 SkyblockItem
impl Debug for SkyblockItem
Source§impl<'de> Deserialize<'de> for SkyblockItem
impl<'de> Deserialize<'de> for SkyblockItem
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 SkyblockItem
impl PartialEq for SkyblockItem
Source§impl Serialize for SkyblockItem
impl Serialize for SkyblockItem
impl StructuralPartialEq for SkyblockItem
Auto Trait Implementations§
impl Freeze for SkyblockItem
impl RefUnwindSafe for SkyblockItem
impl Send for SkyblockItem
impl Sync for SkyblockItem
impl Unpin for SkyblockItem
impl UnwindSafe for SkyblockItem
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