pub struct KrakenEmbedToggleAutoEarnQueryParams {
pub want_enabled: bool,
}Expand description
Query parameters for toggling Auto-Earn.
JSON schema
{
"title": "KrakenEmbedToggleAutoEarnQueryParams",
"description": "Query parameters for toggling Auto-Earn.",
"type": "object",
"required": [
"want_enabled"
],
"properties": {
"want_enabled": {
"type": "boolean"
}
},
"x-stainless-model":
"kraken_embed.kraken_embed_toggle_auto_earn_query_params"
}Fields§
§want_enabled: boolTrait Implementations§
Source§impl Clone for KrakenEmbedToggleAutoEarnQueryParams
impl Clone for KrakenEmbedToggleAutoEarnQueryParams
Source§fn clone(&self) -> KrakenEmbedToggleAutoEarnQueryParams
fn clone(&self) -> KrakenEmbedToggleAutoEarnQueryParams
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 KrakenEmbedToggleAutoEarnQueryParams
impl<'de> Deserialize<'de> for KrakenEmbedToggleAutoEarnQueryParams
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<&KrakenEmbedToggleAutoEarnQueryParams> for KrakenEmbedToggleAutoEarnQueryParams
impl From<&KrakenEmbedToggleAutoEarnQueryParams> for KrakenEmbedToggleAutoEarnQueryParams
Source§fn from(value: &KrakenEmbedToggleAutoEarnQueryParams) -> Self
fn from(value: &KrakenEmbedToggleAutoEarnQueryParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedToggleAutoEarnQueryParams
impl RefUnwindSafe for KrakenEmbedToggleAutoEarnQueryParams
impl Send for KrakenEmbedToggleAutoEarnQueryParams
impl Sync for KrakenEmbedToggleAutoEarnQueryParams
impl Unpin for KrakenEmbedToggleAutoEarnQueryParams
impl UnsafeUnpin for KrakenEmbedToggleAutoEarnQueryParams
impl UnwindSafe for KrakenEmbedToggleAutoEarnQueryParams
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