pub struct SendTransactionRequestParams {
pub tx: String,
pub request_id: SignatoryRequestId,
}
Fields§
§tx: String
The Base64-encoded transaction, signed by the retail trader.
request_id: SignatoryRequestId
The requestId from the firm quote response
Trait Implementations§
Source§impl Clone for SendTransactionRequestParams
impl Clone for SendTransactionRequestParams
Source§fn clone(&self) -> SendTransactionRequestParams
fn clone(&self) -> SendTransactionRequestParams
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 SendTransactionRequestParams
impl Debug for SendTransactionRequestParams
Source§impl<'de> Deserialize<'de> for SendTransactionRequestParams
impl<'de> Deserialize<'de> for SendTransactionRequestParams
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 Hash for SendTransactionRequestParams
impl Hash for SendTransactionRequestParams
Source§impl PartialEq for SendTransactionRequestParams
impl PartialEq for SendTransactionRequestParams
Source§fn eq(&self, other: &SendTransactionRequestParams) -> bool
fn eq(&self, other: &SendTransactionRequestParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for SendTransactionRequestParams
impl StructuralPartialEq for SendTransactionRequestParams
Auto Trait Implementations§
impl Freeze for SendTransactionRequestParams
impl RefUnwindSafe for SendTransactionRequestParams
impl Send for SendTransactionRequestParams
impl Sync for SendTransactionRequestParams
impl Unpin for SendTransactionRequestParams
impl UnwindSafe for SendTransactionRequestParams
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