pub struct Listing {Show 16 fields
pub id: String,
pub created_at: String,
pub listing_type: String,
pub price: f64,
pub description: Option<String>,
pub state: String,
pub seller: Seller,
pub reference: Option<Reference>,
pub item: Item,
pub is_seller: Option<bool>,
pub min_offer_price: Option<f64>,
pub max_offer_discount: Option<f64>,
pub is_watchlisted: Option<bool>,
pub watchers: Option<i32>,
pub auction_details: Option<AuctionDetails>,
pub sold_at: Option<String>,
}Fields§
§id: String§created_at: String§listing_type: String§price: f64§description: Option<String>§state: String§seller: Seller§reference: Option<Reference>§item: Item§is_seller: Option<bool>§min_offer_price: Option<f64>§max_offer_discount: Option<f64>§is_watchlisted: Option<bool>§watchers: Option<i32>§auction_details: Option<AuctionDetails>§sold_at: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Listing
impl<'de> Deserialize<'de> for Listing
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 Listing
impl RefUnwindSafe for Listing
impl Send for Listing
impl Sync for Listing
impl Unpin for Listing
impl UnwindSafe for Listing
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