pub struct AuctionResponse {
pub chain_id: String,
pub height: u64,
pub payments: Vec<Payment>,
}
Expand description
AuctionResponse contains the payment details of an auction for the supplied
chain_id
, height
pair. This response will only be returned if an auction
was found, otherwise an error will be returned.
Each bid submitted MUST include payments to the addresses in the payments
list with the respective allocations and denominations.
Please consult the API docs for more details.
Fields§
§chain_id: String
§height: u64
§payments: Vec<Payment>
Trait Implementations§
Source§impl Clone for AuctionResponse
impl Clone for AuctionResponse
Source§fn clone(&self) -> AuctionResponse
fn clone(&self) -> AuctionResponse
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 AuctionResponse
impl Debug for AuctionResponse
Source§impl<'de> Deserialize<'de> for AuctionResponse
impl<'de> Deserialize<'de> for AuctionResponse
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 AuctionResponse
impl RefUnwindSafe for AuctionResponse
impl Send for AuctionResponse
impl Sync for AuctionResponse
impl Unpin for AuctionResponse
impl UnwindSafe for AuctionResponse
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