pub struct ExecutionPriceRange {
pub best_price: Option<String>,
pub worst_price: Option<String>,
}Expand description
ExecutionPriceRange
JSON schema
{
"type": "object",
"properties": {
"best_price": {
"description": "Best execution price achieved",
"examples": [
"2045.00"
],
"type": [
"string",
"null"
]
},
"worst_price": {
"description": "Worst execution price in the fill",
"examples": [
"2052.00"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§best_price: Option<String>Best execution price achieved
worst_price: Option<String>Worst execution price in the fill
Trait Implementations§
Source§impl Clone for ExecutionPriceRange
impl Clone for ExecutionPriceRange
Source§fn clone(&self) -> ExecutionPriceRange
fn clone(&self) -> ExecutionPriceRange
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 ExecutionPriceRange
impl Debug for ExecutionPriceRange
Source§impl Default for ExecutionPriceRange
impl Default for ExecutionPriceRange
Source§impl<'de> Deserialize<'de> for ExecutionPriceRange
impl<'de> Deserialize<'de> for ExecutionPriceRange
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 ExecutionPriceRange
impl RefUnwindSafe for ExecutionPriceRange
impl Send for ExecutionPriceRange
impl Sync for ExecutionPriceRange
impl Unpin for ExecutionPriceRange
impl UnsafeUnpin for ExecutionPriceRange
impl UnwindSafe for ExecutionPriceRange
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