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