pub struct AuctionsResponse {
pub auctions: HashMap<String, Vec<DailyAuction>>,
pub next_page_token: Option<String>,
pub currency: Option<Currency>,
}Fields§
§auctions: HashMap<String, Vec<DailyAuction>>§next_page_token: Option<String>§currency: Option<Currency>Trait Implementations§
Source§impl Clone for AuctionsResponse
impl Clone for AuctionsResponse
Source§fn clone(&self) -> AuctionsResponse
fn clone(&self) -> AuctionsResponse
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 AuctionsResponse
impl Debug for AuctionsResponse
Source§impl Default for AuctionsResponse
impl Default for AuctionsResponse
Source§fn default() -> AuctionsResponse
fn default() -> AuctionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuctionsResponse
impl<'de> Deserialize<'de> for AuctionsResponse
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 AuctionsResponse
impl PartialEq for AuctionsResponse
impl StructuralPartialEq for AuctionsResponse
Auto Trait Implementations§
impl Freeze for AuctionsResponse
impl RefUnwindSafe for AuctionsResponse
impl Send for AuctionsResponse
impl Sync for AuctionsResponse
impl Unpin for AuctionsResponse
impl UnwindSafe for AuctionsResponse
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