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