pub struct KrakenEmbedGetEarnSummaryQueryParams {
pub currency: KrakenEmbedGetEarnSummaryQueryParamsCurrency,
}Expand description
Query parameters for getting an earn summary.
JSON schema
{
"title": "KrakenEmbedGetEarnSummaryQueryParams",
"description": "Query parameters for getting an earn summary.",
"type": "object",
"required": [
"currency"
],
"properties": {
"currency": {
"type": "string",
"maxLength": 16
}
},
"x-stainless-model":
"kraken_embed.kraken_embed_get_earn_summary_query_params"
}Fields§
§currency: KrakenEmbedGetEarnSummaryQueryParamsCurrencyTrait Implementations§
Source§impl Clone for KrakenEmbedGetEarnSummaryQueryParams
impl Clone for KrakenEmbedGetEarnSummaryQueryParams
Source§fn clone(&self) -> KrakenEmbedGetEarnSummaryQueryParams
fn clone(&self) -> KrakenEmbedGetEarnSummaryQueryParams
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 KrakenEmbedGetEarnSummaryQueryParams
impl<'de> Deserialize<'de> for KrakenEmbedGetEarnSummaryQueryParams
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<&KrakenEmbedGetEarnSummaryQueryParams> for KrakenEmbedGetEarnSummaryQueryParams
impl From<&KrakenEmbedGetEarnSummaryQueryParams> for KrakenEmbedGetEarnSummaryQueryParams
Source§fn from(value: &KrakenEmbedGetEarnSummaryQueryParams) -> Self
fn from(value: &KrakenEmbedGetEarnSummaryQueryParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedGetEarnSummaryQueryParams
impl RefUnwindSafe for KrakenEmbedGetEarnSummaryQueryParams
impl Send for KrakenEmbedGetEarnSummaryQueryParams
impl Sync for KrakenEmbedGetEarnSummaryQueryParams
impl Unpin for KrakenEmbedGetEarnSummaryQueryParams
impl UnsafeUnpin for KrakenEmbedGetEarnSummaryQueryParams
impl UnwindSafe for KrakenEmbedGetEarnSummaryQueryParams
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