pub enum AuctionType {
FirstPrice,
SecondPricePlus,
ExchangeSpecific(i32),
}Expand description
3.2.1 BidRequest#at, 3.2.12 Deal#at
Auction type, where 1 = First Price, 2 = Second Price Plus. Exchange-specific auction types can be defined using values greater than 500.
Variants§
Trait Implementations§
Source§impl Clone for AuctionType
impl Clone for AuctionType
Source§fn clone(&self) -> AuctionType
fn clone(&self) -> AuctionType
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 AuctionType
impl Debug for AuctionType
Source§impl Default for AuctionType
impl Default for AuctionType
Source§impl<'de> Deserialize<'de> for AuctionType
impl<'de> Deserialize<'de> for AuctionType
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 AuctionType
impl PartialEq for AuctionType
Source§impl Serialize for AuctionType
impl Serialize for AuctionType
impl Copy for AuctionType
impl Eq for AuctionType
impl StructuralPartialEq for AuctionType
Auto Trait Implementations§
impl Freeze for AuctionType
impl RefUnwindSafe for AuctionType
impl Send for AuctionType
impl Sync for AuctionType
impl Unpin for AuctionType
impl UnwindSafe for AuctionType
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