pub struct AuctionsPage {
pub page: i64,
pub total_pages: i64,
pub total_auctions: i64,
pub last_updated: i64,
pub auctions: Vec<SkyBlockAuction>,
}Expand description
One page of the global active-auctions listing from skyblock/auctions.
Fields§
§page: i64§total_pages: i64§total_auctions: i64§last_updated: i64§auctions: Vec<SkyBlockAuction>Trait Implementations§
Source§impl Clone for AuctionsPage
impl Clone for AuctionsPage
Source§fn clone(&self) -> AuctionsPage
fn clone(&self) -> AuctionsPage
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 AuctionsPage
impl Debug for AuctionsPage
Source§impl<'de> Deserialize<'de> for AuctionsPage
impl<'de> Deserialize<'de> for AuctionsPage
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 AuctionsPage
impl RefUnwindSafe for AuctionsPage
impl Send for AuctionsPage
impl Sync for AuctionsPage
impl Unpin for AuctionsPage
impl UnsafeUnpin for AuctionsPage
impl UnwindSafe for AuctionsPage
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