pub struct ExecuteQuoteBody {
pub user_id: ExecuteQuoteBodyUserId,
}Expand description
ExecuteQuoteBody
JSON schema
{
"examples": [
{
"user_id": "did:privy:clabcd1234"
}
],
"type": "object",
"required": [
"user_id"
],
"properties": {
"user_id": {
"type": "string",
"minLength": 1
}
}
}Fields§
§user_id: ExecuteQuoteBodyUserIdTrait Implementations§
Source§impl Clone for ExecuteQuoteBody
impl Clone for ExecuteQuoteBody
Source§fn clone(&self) -> ExecuteQuoteBody
fn clone(&self) -> ExecuteQuoteBody
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 Debug for ExecuteQuoteBody
impl Debug for ExecuteQuoteBody
Source§impl<'de> Deserialize<'de> for ExecuteQuoteBody
impl<'de> Deserialize<'de> for ExecuteQuoteBody
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecuteQuoteBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecuteQuoteBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&ExecuteQuoteBody> for ExecuteQuoteBody
impl From<&ExecuteQuoteBody> for ExecuteQuoteBody
Source§fn from(value: &ExecuteQuoteBody) -> ExecuteQuoteBody
fn from(value: &ExecuteQuoteBody) -> ExecuteQuoteBody
Converts to this type from the input type.
Source§impl Serialize for ExecuteQuoteBody
impl Serialize for ExecuteQuoteBody
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ExecuteQuoteBody
impl RefUnwindSafe for ExecuteQuoteBody
impl Send for ExecuteQuoteBody
impl Sync for ExecuteQuoteBody
impl Unpin for ExecuteQuoteBody
impl UnwindSafe for ExecuteQuoteBody
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