pub struct PredictionExecutionContext {
pub additional_properties: BTreeMap<String, Value>,
}Expand description
Opaque execution context. Pass this object unchanged to POST /execute. Includes a type field (create_order for keeper-filled orders, bisonfi_swap for Jupiter Forecast orders).
Fields§
§additional_properties: BTreeMap<String, Value>Additional properties not explicitly defined in the schema
Trait Implementations§
Source§impl Clone for PredictionExecutionContext
impl Clone for PredictionExecutionContext
Source§fn clone(&self) -> PredictionExecutionContext
fn clone(&self) -> PredictionExecutionContext
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 PredictionExecutionContext
impl Debug for PredictionExecutionContext
Source§impl Default for PredictionExecutionContext
impl Default for PredictionExecutionContext
Source§fn default() -> PredictionExecutionContext
fn default() -> PredictionExecutionContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PredictionExecutionContext
impl<'de> Deserialize<'de> for PredictionExecutionContext
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 PredictionExecutionContext
impl RefUnwindSafe for PredictionExecutionContext
impl Send for PredictionExecutionContext
impl Sync for PredictionExecutionContext
impl Unpin for PredictionExecutionContext
impl UnsafeUnpin for PredictionExecutionContext
impl UnwindSafe for PredictionExecutionContext
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