pub struct KrakenEmbedGetQuoteQueryParams {
pub user_id: KrakenEmbedGetQuoteQueryParamsUserId,
}Expand description
KrakenEmbedGetQuoteQueryParams
JSON schema
{
"examples": [
{
"user_id": "cmdnvsfxa0007jt0jy61eghjk"
}
],
"type": "object",
"required": [
"user_id"
],
"properties": {
"user_id": {
"description": "The ID of the Privy user.",
"type": "string",
"minLength": 1
}
}
}Fields§
§user_id: KrakenEmbedGetQuoteQueryParamsUserIdThe ID of the Privy user.
Trait Implementations§
Source§impl Clone for KrakenEmbedGetQuoteQueryParams
impl Clone for KrakenEmbedGetQuoteQueryParams
Source§fn clone(&self) -> KrakenEmbedGetQuoteQueryParams
fn clone(&self) -> KrakenEmbedGetQuoteQueryParams
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 KrakenEmbedGetQuoteQueryParams
impl<'de> Deserialize<'de> for KrakenEmbedGetQuoteQueryParams
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<&KrakenEmbedGetQuoteQueryParams> for KrakenEmbedGetQuoteQueryParams
impl From<&KrakenEmbedGetQuoteQueryParams> for KrakenEmbedGetQuoteQueryParams
Source§fn from(value: &KrakenEmbedGetQuoteQueryParams) -> Self
fn from(value: &KrakenEmbedGetQuoteQueryParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedGetQuoteQueryParams
impl RefUnwindSafe for KrakenEmbedGetQuoteQueryParams
impl Send for KrakenEmbedGetQuoteQueryParams
impl Sync for KrakenEmbedGetQuoteQueryParams
impl Unpin for KrakenEmbedGetQuoteQueryParams
impl UnsafeUnpin for KrakenEmbedGetQuoteQueryParams
impl UnwindSafe for KrakenEmbedGetQuoteQueryParams
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