pub struct KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem {
pub ref_id: String,
pub type_: KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItemType,
}Expand description
KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
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_: KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItemTypeTrait Implementations§
Source§impl Clone for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl Clone for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
Source§fn clone(
&self,
) -> KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
fn clone( &self, ) -> KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
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 KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl<'de> Deserialize<'de> for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
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<&KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem> for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl From<&KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem> for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
Source§fn from(
value: &KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem,
) -> Self
fn from( value: &KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl RefUnwindSafe for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl Send for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl Sync for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl Unpin for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl UnsafeUnpin for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl UnwindSafe for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
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