pub struct KrakenEmbedGetPortfolioDetailsQueryParamsSchema {
pub quote: Option<KrakenEmbedGetPortfolioDetailsQueryParamsSchemaQuote>,
}Expand description
Query parameters for portfolio details endpoint.
JSON schema
{
"description": "Query parameters for portfolio details endpoint.",
"examples": [
{
"quote": "USD"
}
],
"type": "object",
"properties": {
"quote": {
"type": "string",
"maxLength": 16
}
}
}Fields§
§quote: Option<KrakenEmbedGetPortfolioDetailsQueryParamsSchemaQuote>Trait Implementations§
Source§impl Clone for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
impl Clone for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
Source§fn clone(&self) -> KrakenEmbedGetPortfolioDetailsQueryParamsSchema
fn clone(&self) -> KrakenEmbedGetPortfolioDetailsQueryParamsSchema
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 KrakenEmbedGetPortfolioDetailsQueryParamsSchema
impl<'de> Deserialize<'de> for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
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<&KrakenEmbedGetPortfolioDetailsQueryParamsSchema> for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
impl From<&KrakenEmbedGetPortfolioDetailsQueryParamsSchema> for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
Source§fn from(value: &KrakenEmbedGetPortfolioDetailsQueryParamsSchema) -> Self
fn from(value: &KrakenEmbedGetPortfolioDetailsQueryParamsSchema) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
impl RefUnwindSafe for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
impl Send for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
impl Sync for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
impl Unpin for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
impl UnsafeUnpin for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
impl UnwindSafe for KrakenEmbedGetPortfolioDetailsQueryParamsSchema
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