pub struct Bazaar {
pub last_updated: i64,
pub products: HashMap<String, BazaarProduct>,
}Expand description
A snapshot of the SkyBlock bazaar, as returned by skyblock/bazaar.
Fields§
§last_updated: i64§products: HashMap<String, BazaarProduct>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Bazaar
impl<'de> Deserialize<'de> for Bazaar
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 Bazaar
impl RefUnwindSafe for Bazaar
impl Send for Bazaar
impl Sync for Bazaar
impl Unpin for Bazaar
impl UnsafeUnpin for Bazaar
impl UnwindSafe for Bazaar
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