pub struct PredictionExecuteRequest {
pub context: Option<PredictionExecuteRequestContext>,
pub request_id: Option<String>,
pub signed_transaction: String,
}Fields§
§context: Option<PredictionExecuteRequestContext>Optional. The execution.context object from the order build, passed unchanged. Validated against the signed transaction when present. For a Forecast swap it carries jupiterSwapRequestId and ownerPubkey.
request_id: Option<String>Optional client correlation ID, echoed back in the response.
signed_transaction: StringBase64-encoded signed transaction from the order build.
Implementations§
Trait Implementations§
Source§impl Clone for PredictionExecuteRequest
impl Clone for PredictionExecuteRequest
Source§fn clone(&self) -> PredictionExecuteRequest
fn clone(&self) -> PredictionExecuteRequest
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 PredictionExecuteRequest
impl Debug for PredictionExecuteRequest
Source§impl<'de> Deserialize<'de> for PredictionExecuteRequest
impl<'de> Deserialize<'de> for PredictionExecuteRequest
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 PredictionExecuteRequest
impl RefUnwindSafe for PredictionExecuteRequest
impl Send for PredictionExecuteRequest
impl Sync for PredictionExecuteRequest
impl Unpin for PredictionExecuteRequest
impl UnsafeUnpin for PredictionExecuteRequest
impl UnwindSafe for PredictionExecuteRequest
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