pub struct ComboPositionResponseComboPositionResponse {
pub description: Option<String>,
pub legs: Option<Vec<ComboPositionResponseComboPositionResponseLeg>>,
pub name: Option<String>,
pub positions: Option<Vec<IndividualComboPosition>>,
}Fields§
§description: Option<String>The ratio and conids included in the position.
legs: Option<Vec<ComboPositionResponseComboPositionResponseLeg>>List of the legs that make up a position.
name: Option<String>Internal identifier of a combination position.
positions: Option<Vec<IndividualComboPosition>>List of the positions that make up a combination.
Trait Implementations§
Source§impl Clone for ComboPositionResponseComboPositionResponse
impl Clone for ComboPositionResponseComboPositionResponse
Source§fn clone(&self) -> ComboPositionResponseComboPositionResponse
fn clone(&self) -> ComboPositionResponseComboPositionResponse
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<'de> Deserialize<'de> for ComboPositionResponseComboPositionResponse
impl<'de> Deserialize<'de> for ComboPositionResponseComboPositionResponse
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 PartialEq for ComboPositionResponseComboPositionResponse
impl PartialEq for ComboPositionResponseComboPositionResponse
Source§fn eq(&self, other: &ComboPositionResponseComboPositionResponse) -> bool
fn eq(&self, other: &ComboPositionResponseComboPositionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ComboPositionResponseComboPositionResponse
Auto Trait Implementations§
impl Freeze for ComboPositionResponseComboPositionResponse
impl RefUnwindSafe for ComboPositionResponseComboPositionResponse
impl Send for ComboPositionResponseComboPositionResponse
impl Sync for ComboPositionResponseComboPositionResponse
impl Unpin for ComboPositionResponseComboPositionResponse
impl UnsafeUnpin for ComboPositionResponseComboPositionResponse
impl UnwindSafe for ComboPositionResponseComboPositionResponse
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