pub enum GetMasterAccountPortfolioHistoryIncludeAssets {
Variant0(Vec<GetMasterAccountPortfolioHistoryIncludeAssetsVariant0Item>),
Variant1(GetMasterAccountPortfolioHistoryIncludeAssetsVariant1),
Variant2(String),
}Expand description
GetMasterAccountPortfolioHistoryIncludeAssets
JSON schema
{
"oneOf": [
{
"type": "array",
"items": {
"type": "string",
"maxLength": 16
}
},
{
"type": "string",
"maxLength": 16
},
{
"type": "string"
}
]
}Variants§
Variant0(Vec<GetMasterAccountPortfolioHistoryIncludeAssetsVariant0Item>)
Variant1(GetMasterAccountPortfolioHistoryIncludeAssetsVariant1)
Variant2(String)
Trait Implementations§
Source§impl Clone for GetMasterAccountPortfolioHistoryIncludeAssets
impl Clone for GetMasterAccountPortfolioHistoryIncludeAssets
Source§fn clone(&self) -> GetMasterAccountPortfolioHistoryIncludeAssets
fn clone(&self) -> GetMasterAccountPortfolioHistoryIncludeAssets
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<'de> Deserialize<'de> for GetMasterAccountPortfolioHistoryIncludeAssets
impl<'de> Deserialize<'de> for GetMasterAccountPortfolioHistoryIncludeAssets
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 From<&GetMasterAccountPortfolioHistoryIncludeAssets> for GetMasterAccountPortfolioHistoryIncludeAssets
impl From<&GetMasterAccountPortfolioHistoryIncludeAssets> for GetMasterAccountPortfolioHistoryIncludeAssets
Source§fn from(value: &GetMasterAccountPortfolioHistoryIncludeAssets) -> Self
fn from(value: &GetMasterAccountPortfolioHistoryIncludeAssets) -> Self
Converts to this type from the input type.
Source§impl From<GetMasterAccountPortfolioHistoryIncludeAssetsVariant1> for GetMasterAccountPortfolioHistoryIncludeAssets
impl From<GetMasterAccountPortfolioHistoryIncludeAssetsVariant1> for GetMasterAccountPortfolioHistoryIncludeAssets
Source§fn from(value: GetMasterAccountPortfolioHistoryIncludeAssetsVariant1) -> Self
fn from(value: GetMasterAccountPortfolioHistoryIncludeAssetsVariant1) -> Self
Converts to this type from the input type.
Source§impl From<Vec<GetMasterAccountPortfolioHistoryIncludeAssetsVariant0Item>> for GetMasterAccountPortfolioHistoryIncludeAssets
impl From<Vec<GetMasterAccountPortfolioHistoryIncludeAssetsVariant0Item>> for GetMasterAccountPortfolioHistoryIncludeAssets
Source§fn from(
value: Vec<GetMasterAccountPortfolioHistoryIncludeAssetsVariant0Item>,
) -> Self
fn from( value: Vec<GetMasterAccountPortfolioHistoryIncludeAssetsVariant0Item>, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetMasterAccountPortfolioHistoryIncludeAssets
impl RefUnwindSafe for GetMasterAccountPortfolioHistoryIncludeAssets
impl Send for GetMasterAccountPortfolioHistoryIncludeAssets
impl Sync for GetMasterAccountPortfolioHistoryIncludeAssets
impl Unpin for GetMasterAccountPortfolioHistoryIncludeAssets
impl UnsafeUnpin for GetMasterAccountPortfolioHistoryIncludeAssets
impl UnwindSafe for GetMasterAccountPortfolioHistoryIncludeAssets
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