Struct b3_users::data::user::UserDataArgs
source · pub struct UserDataArgs {
pub name: Option<String>,
pub email: Option<String>,
pub balance: Option<u128>,
pub password: Option<String>,
pub settings: Option<HashMap<String, UserDataSettingValue>>,
}Fields§
§name: Option<String>§email: Option<String>§balance: Option<u128>§password: Option<String>§settings: Option<HashMap<String, UserDataSettingValue>>Trait Implementations§
source§impl CandidType for UserDataArgs
impl CandidType for UserDataArgs
source§impl Clone for UserDataArgs
impl Clone for UserDataArgs
source§fn clone(&self) -> UserDataArgs
fn clone(&self) -> UserDataArgs
Returns a copy 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 UserDataArgs
impl Debug for UserDataArgs
source§impl Default for UserDataArgs
impl Default for UserDataArgs
source§fn default() -> UserDataArgs
fn default() -> UserDataArgs
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UserDataArgs
impl<'de> Deserialize<'de> for UserDataArgs
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<UserDataArgs> for UserDataArgs
impl PartialEq<UserDataArgs> for UserDataArgs
source§fn eq(&self, other: &UserDataArgs) -> bool
fn eq(&self, other: &UserDataArgs) -> bool
This method tests for
self and other values to be equal, and is used
by ==.