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