pub struct AuctionPriceHistory {
pub total: i64,
pub prices: Vec<PriceEntry>,
}
Fields§
§total: i64
§prices: Vec<PriceEntry>
Trait Implementations§
Source§impl Debug for AuctionPriceHistory
impl Debug for AuctionPriceHistory
Source§impl<'de> Deserialize<'de> for AuctionPriceHistory
impl<'de> Deserialize<'de> for AuctionPriceHistory
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 AuctionPriceHistory
impl RefUnwindSafe for AuctionPriceHistory
impl Send for AuctionPriceHistory
impl Sync for AuctionPriceHistory
impl Unpin for AuctionPriceHistory
impl UnwindSafe for AuctionPriceHistory
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