pub struct BidResponse {
pub chain_id: String,
pub height: u64,
pub kind: Kind,
pub tx_hashes: Vec<String>,
}
Expand description
A BidResponse is the indication that the request well formed and considered
for the given chain_id
and height
, but it does not imply guaranteed inclusion.
Fields§
§chain_id: String
§height: u64
§kind: Kind
§tx_hashes: Vec<String>
Trait Implementations§
Source§impl Clone for BidResponse
impl Clone for BidResponse
Source§fn clone(&self) -> BidResponse
fn clone(&self) -> BidResponse
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 BidResponse
impl Debug for BidResponse
Source§impl<'de> Deserialize<'de> for BidResponse
impl<'de> Deserialize<'de> for BidResponse
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 BidResponse
impl RefUnwindSafe for BidResponse
impl Send for BidResponse
impl Sync for BidResponse
impl Unpin for BidResponse
impl UnwindSafe for BidResponse
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