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<KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem, <__D as Deserializer<'de>>::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,
) -> KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
fn from( value: &KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem, ) -> KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
Converts to this type from the input type.
Source§impl Serialize for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl Serialize for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl RefUnwindSafe for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl Send for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl Sync for KrakenEmbedGetPortfolioTransactionsQueryParamsSchemaRefIdsItem
impl Unpin 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