pub struct AuctionDetails {
pub reserve_price: Option<f64>,
pub top_bid: Option<TopBid>,
pub expires_at: Option<String>,
pub min_next_bid: Option<f64>,
}Fields§
§reserve_price: Option<f64>§top_bid: Option<TopBid>§expires_at: Option<String>§min_next_bid: Option<f64>Trait Implementations§
Source§impl Clone for AuctionDetails
impl Clone for AuctionDetails
Source§fn clone(&self) -> AuctionDetails
fn clone(&self) -> AuctionDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuctionDetails
impl Debug for AuctionDetails
Source§impl<'de> Deserialize<'de> for AuctionDetails
impl<'de> Deserialize<'de> for AuctionDetails
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 AuctionDetails
impl RefUnwindSafe for AuctionDetails
impl Send for AuctionDetails
impl Sync for AuctionDetails
impl Unpin for AuctionDetails
impl UnsafeUnpin for AuctionDetails
impl UnwindSafe for AuctionDetails
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