pub struct TriggerV2TxSignatureResponse {
pub id: String,
pub tx_signature: String,
}Expand description
Minimal create/cancel response carrying the order ID and an on-chain transaction signature. Returned by DCA create (deposit signature) and by confirm-cancel (withdrawal signature). Unlike price order create, it does not include depositConfirmed.
Fields§
§id: StringOrder UUID
tx_signature: StringOn-chain transaction signature
Trait Implementations§
Source§impl Clone for TriggerV2TxSignatureResponse
impl Clone for TriggerV2TxSignatureResponse
Source§fn clone(&self) -> TriggerV2TxSignatureResponse
fn clone(&self) -> TriggerV2TxSignatureResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TriggerV2TxSignatureResponse
impl Debug for TriggerV2TxSignatureResponse
Source§impl<'de> Deserialize<'de> for TriggerV2TxSignatureResponse
impl<'de> Deserialize<'de> for TriggerV2TxSignatureResponse
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 TriggerV2TxSignatureResponse
impl RefUnwindSafe for TriggerV2TxSignatureResponse
impl Send for TriggerV2TxSignatureResponse
impl Sync for TriggerV2TxSignatureResponse
impl Unpin for TriggerV2TxSignatureResponse
impl UnsafeUnpin for TriggerV2TxSignatureResponse
impl UnwindSafe for TriggerV2TxSignatureResponse
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