pub struct PrivateExecuteBlockTradeRequest {
pub timestamp: i64,
pub nonce: String,
pub role: Role,
pub trades: Vec<BlockTradeTrades>,
pub counterparty_signature: String,
}Fields§
§timestamp: i64§nonce: String§role: Role§trades: Vec<BlockTradeTrades>§counterparty_signature: StringTrait Implementations§
Source§impl Clone for PrivateExecuteBlockTradeRequest
impl Clone for PrivateExecuteBlockTradeRequest
Source§fn clone(&self) -> PrivateExecuteBlockTradeRequest
fn clone(&self) -> PrivateExecuteBlockTradeRequest
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 Default for PrivateExecuteBlockTradeRequest
impl Default for PrivateExecuteBlockTradeRequest
Source§fn default() -> PrivateExecuteBlockTradeRequest
fn default() -> PrivateExecuteBlockTradeRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateExecuteBlockTradeRequest
impl<'de> Deserialize<'de> for PrivateExecuteBlockTradeRequest
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 PrivateExecuteBlockTradeRequest
impl PartialEq for PrivateExecuteBlockTradeRequest
Source§fn eq(&self, other: &PrivateExecuteBlockTradeRequest) -> bool
fn eq(&self, other: &PrivateExecuteBlockTradeRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivateExecuteBlockTradeRequest
Auto Trait Implementations§
impl Freeze for PrivateExecuteBlockTradeRequest
impl RefUnwindSafe for PrivateExecuteBlockTradeRequest
impl Send for PrivateExecuteBlockTradeRequest
impl Sync for PrivateExecuteBlockTradeRequest
impl Unpin for PrivateExecuteBlockTradeRequest
impl UnwindSafe for PrivateExecuteBlockTradeRequest
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