pub struct BidRequest {
pub chain_id: String,
pub height: u64,
pub kind: Kind,
pub txs: Vec<Vec<u8>>,
}
Expand description
The BidRequest signals intent to bid on the kind
at height
for the given
chain_id
. The bid is implicit in the payment transactions/messages included
in the txs
list.
Fields§
§chain_id: String
§height: u64
§kind: Kind
§txs: Vec<Vec<u8>>
base64 serialized transactions
Trait Implementations§
Source§impl Clone for BidRequest
impl Clone for BidRequest
Source§fn clone(&self) -> BidRequest
fn clone(&self) -> BidRequest
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 BidRequest
impl Debug for BidRequest
Source§impl<'de> Deserialize<'de> for BidRequest
impl<'de> Deserialize<'de> for BidRequest
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 BidRequest
impl RefUnwindSafe for BidRequest
impl Send for BidRequest
impl Sync for BidRequest
impl Unpin for BidRequest
impl UnwindSafe for BidRequest
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