pub enum AuctionResult {
Success {
quantity: u64,
price: Money<'static, Currency>,
},
InProgress,
Failure,
}Variants§
Trait Implementations§
Source§impl Clone for AuctionResult
impl Clone for AuctionResult
Source§fn clone(&self) -> AuctionResult
fn clone(&self) -> AuctionResult
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 AuctionResult
impl Debug for AuctionResult
Source§impl PartialEq for AuctionResult
impl PartialEq for AuctionResult
impl StructuralPartialEq for AuctionResult
Auto Trait Implementations§
impl Freeze for AuctionResult
impl RefUnwindSafe for AuctionResult
impl Send for AuctionResult
impl Sync for AuctionResult
impl Unpin for AuctionResult
impl UnwindSafe for AuctionResult
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