pub struct OwnerInputUser {
pub user_id: String,
}Expand description
Owner input specifying a Privy user ID.
JSON schema
{
"title": "OwnerInputUser",
"description": "Owner input specifying a Privy user ID.",
"type": "object",
"required": [
"user_id"
],
"properties": {
"user_id": {
"type": "string"
}
},
"x-stainless-model": "shared.owner_input_user"
}Fields§
§user_id: StringTrait Implementations§
Source§impl Clone for OwnerInputUser
impl Clone for OwnerInputUser
Source§fn clone(&self) -> OwnerInputUser
fn clone(&self) -> OwnerInputUser
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 Debug for OwnerInputUser
impl Debug for OwnerInputUser
Source§impl<'de> Deserialize<'de> for OwnerInputUser
impl<'de> Deserialize<'de> for OwnerInputUser
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<&OwnerInputUser> for OwnerInputUser
impl From<&OwnerInputUser> for OwnerInputUser
Source§fn from(value: &OwnerInputUser) -> Self
fn from(value: &OwnerInputUser) -> Self
Converts to this type from the input type.
Source§impl From<OwnerInputUser> for OwnerInput
impl From<OwnerInputUser> for OwnerInput
Source§fn from(value: OwnerInputUser) -> Self
fn from(value: OwnerInputUser) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OwnerInputUser
impl RefUnwindSafe for OwnerInputUser
impl Send for OwnerInputUser
impl Sync for OwnerInputUser
impl Unpin for OwnerInputUser
impl UnsafeUnpin for OwnerInputUser
impl UnwindSafe for OwnerInputUser
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