pub struct UserProfileArgs {
pub full_name: Option<String>,
pub address: Option<String>,
pub phone_number: Option<String>,
pub attributes: Option<HashMap<String, String>>,
}Fields§
§full_name: Option<String>§address: Option<String>§phone_number: Option<String>§attributes: Option<HashMap<String, String>>Trait Implementations§
Source§impl CandidType for UserProfileArgs
impl CandidType for UserProfileArgs
Source§impl Clone for UserProfileArgs
impl Clone for UserProfileArgs
Source§fn clone(&self) -> UserProfileArgs
fn clone(&self) -> UserProfileArgs
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 UserProfileArgs
impl Debug for UserProfileArgs
Source§impl Default for UserProfileArgs
impl Default for UserProfileArgs
Source§fn default() -> UserProfileArgs
fn default() -> UserProfileArgs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserProfileArgs
impl<'de> Deserialize<'de> for UserProfileArgs
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 PartialEq for UserProfileArgs
impl PartialEq for UserProfileArgs
impl StructuralPartialEq for UserProfileArgs
Auto Trait Implementations§
impl Freeze for UserProfileArgs
impl RefUnwindSafe for UserProfileArgs
impl Send for UserProfileArgs
impl Sync for UserProfileArgs
impl Unpin for UserProfileArgs
impl UnwindSafe for UserProfileArgs
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