pub struct GetMasterAccountPortfolioTransactionsRefIdsItem {
pub ref_id: GetMasterAccountPortfolioTransactionsRefIdsItemRefId,
pub type_: GetMasterAccountPortfolioTransactionsRefIdsItemType,
}Expand description
GetMasterAccountPortfolioTransactionsRefIdsItem
JSON schema
{
"type": "object",
"required": [
"ref_id",
"type"
],
"properties": {
"ref_id": {
"type": "string",
"maxLength": 64
},
"type": {
"type": "string",
"enum": [
"simple_order_quote",
"simple_order_quote_failed"
]
}
}
}Fields§
§ref_id: GetMasterAccountPortfolioTransactionsRefIdsItemRefId§type_: GetMasterAccountPortfolioTransactionsRefIdsItemTypeTrait Implementations§
Source§impl Clone for GetMasterAccountPortfolioTransactionsRefIdsItem
impl Clone for GetMasterAccountPortfolioTransactionsRefIdsItem
Source§fn clone(&self) -> GetMasterAccountPortfolioTransactionsRefIdsItem
fn clone(&self) -> GetMasterAccountPortfolioTransactionsRefIdsItem
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 GetMasterAccountPortfolioTransactionsRefIdsItem
impl<'de> Deserialize<'de> for GetMasterAccountPortfolioTransactionsRefIdsItem
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<&GetMasterAccountPortfolioTransactionsRefIdsItem> for GetMasterAccountPortfolioTransactionsRefIdsItem
impl From<&GetMasterAccountPortfolioTransactionsRefIdsItem> for GetMasterAccountPortfolioTransactionsRefIdsItem
Source§fn from(value: &GetMasterAccountPortfolioTransactionsRefIdsItem) -> Self
fn from(value: &GetMasterAccountPortfolioTransactionsRefIdsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetMasterAccountPortfolioTransactionsRefIdsItem
impl RefUnwindSafe for GetMasterAccountPortfolioTransactionsRefIdsItem
impl Send for GetMasterAccountPortfolioTransactionsRefIdsItem
impl Sync for GetMasterAccountPortfolioTransactionsRefIdsItem
impl Unpin for GetMasterAccountPortfolioTransactionsRefIdsItem
impl UnsafeUnpin for GetMasterAccountPortfolioTransactionsRefIdsItem
impl UnwindSafe for GetMasterAccountPortfolioTransactionsRefIdsItem
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