pub enum AuctionRound {
AuctionRound(AuctionRound),
}Variants§
AuctionRound(AuctionRound)
Describes a round of an auction
Trait Implementations§
Source§impl Clone for AuctionRound
impl Clone for AuctionRound
Source§fn clone(&self) -> AuctionRound
fn clone(&self) -> AuctionRound
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 AuctionRound
impl Debug for AuctionRound
Source§impl<'de> Deserialize<'de> for AuctionRound
impl<'de> Deserialize<'de> for AuctionRound
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 AuctionRound
impl PartialEq for AuctionRound
Source§fn eq(&self, other: &AuctionRound) -> bool
fn eq(&self, other: &AuctionRound) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuctionRound
impl Serialize for AuctionRound
impl StructuralPartialEq for AuctionRound
Auto Trait Implementations§
impl Freeze for AuctionRound
impl RefUnwindSafe for AuctionRound
impl Send for AuctionRound
impl Sync for AuctionRound
impl Unpin for AuctionRound
impl UnsafeUnpin for AuctionRound
impl UnwindSafe for AuctionRound
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