[][src]Struct skyblock_rs::objects::auction::GlobalAuctions

pub struct GlobalAuctions {
    pub page: usize,
    pub total_pages: usize,
    pub total_auctions: usize,
    pub last_update: u64,
    pub auctions: Vec<Auction>,
}

A page of auctions retrieved by the skyblock/auctions endpoint.

Fields

page: usize

The current page fetched

total_pages: usize

The total number of pages in the system

total_auctions: usize

The total number of auctions in the system

last_update: u64

The timestamp of the last update that has occurred in the dataset

auctions: Vec<Auction>

The list of auctions retrieved

Trait Implementations

impl Clone for GlobalAuctions[src]

impl Debug for GlobalAuctions[src]

impl<'de> Deserialize<'de> for GlobalAuctions[src]

impl Eq for GlobalAuctions[src]

impl PartialEq<GlobalAuctions> for GlobalAuctions[src]

impl Serialize for GlobalAuctions[src]

impl StructuralEq for GlobalAuctions[src]

impl StructuralPartialEq for GlobalAuctions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.