pub struct KrakenEmbedGetEarnSummaryKrakenResponse {
pub error: Vec<Value>,
pub errors: Vec<Value>,
pub result: Option<KrakenEmbedGetEarnSummaryResult>,
}Expand description
Kraken API response envelope for earn summary.
JSON schema
{
"title": "KrakenEmbedGetEarnSummaryKrakenResponse",
"description": "Kraken API response envelope for earn summary.",
"type": "object",
"properties": {
"error": {
"type": "array",
"items": {}
},
"errors": {
"type": "array",
"items": {}
},
"result": {
"allOf": [
{
"$ref": "#/components/schemas/KrakenEmbedGetEarnSummaryResult"
},
{
"type": "object"
}
]
}
},
"x-stainless-model":
"kraken_embed.kraken_embed_get_earn_summary_kraken_response"
}Fields§
§error: Vec<Value>§errors: Vec<Value>§result: Option<KrakenEmbedGetEarnSummaryResult>Trait Implementations§
Source§impl Clone for KrakenEmbedGetEarnSummaryKrakenResponse
impl Clone for KrakenEmbedGetEarnSummaryKrakenResponse
Source§fn clone(&self) -> KrakenEmbedGetEarnSummaryKrakenResponse
fn clone(&self) -> KrakenEmbedGetEarnSummaryKrakenResponse
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 KrakenEmbedGetEarnSummaryKrakenResponse
impl<'de> Deserialize<'de> for KrakenEmbedGetEarnSummaryKrakenResponse
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<&KrakenEmbedGetEarnSummaryKrakenResponse> for KrakenEmbedGetEarnSummaryKrakenResponse
impl From<&KrakenEmbedGetEarnSummaryKrakenResponse> for KrakenEmbedGetEarnSummaryKrakenResponse
Source§fn from(value: &KrakenEmbedGetEarnSummaryKrakenResponse) -> Self
fn from(value: &KrakenEmbedGetEarnSummaryKrakenResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedGetEarnSummaryKrakenResponse
impl RefUnwindSafe for KrakenEmbedGetEarnSummaryKrakenResponse
impl Send for KrakenEmbedGetEarnSummaryKrakenResponse
impl Sync for KrakenEmbedGetEarnSummaryKrakenResponse
impl Unpin for KrakenEmbedGetEarnSummaryKrakenResponse
impl UnsafeUnpin for KrakenEmbedGetEarnSummaryKrakenResponse
impl UnwindSafe for KrakenEmbedGetEarnSummaryKrakenResponse
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