pub struct GetBlockTradesResponse {
pub block_trades: Vec<BlockTrade>,
pub continuation: Option<String>,
}Expand description
Response for get_block_trades containing a list of block trades.
Fields§
§block_trades: Vec<BlockTrade>List of block trades
continuation: Option<String>Continuation token for pagination
Trait Implementations§
Source§impl Clone for GetBlockTradesResponse
impl Clone for GetBlockTradesResponse
Source§fn clone(&self) -> GetBlockTradesResponse
fn clone(&self) -> GetBlockTradesResponse
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 GetBlockTradesResponse
impl Debug for GetBlockTradesResponse
Source§impl<'de> Deserialize<'de> for GetBlockTradesResponse
impl<'de> Deserialize<'de> for GetBlockTradesResponse
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 GetBlockTradesResponse
impl PartialEq for GetBlockTradesResponse
Source§impl Serialize for GetBlockTradesResponse
impl Serialize for GetBlockTradesResponse
impl StructuralPartialEq for GetBlockTradesResponse
Auto Trait Implementations§
impl Freeze for GetBlockTradesResponse
impl RefUnwindSafe for GetBlockTradesResponse
impl Send for GetBlockTradesResponse
impl Sync for GetBlockTradesResponse
impl Unpin for GetBlockTradesResponse
impl UnsafeUnpin for GetBlockTradesResponse
impl UnwindSafe for GetBlockTradesResponse
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