pub struct UserData {
pub id: String,
pub name: String,
pub fullname: String,
pub description: String,
pub email: String,
pub password: String,
pub otp_code: String,
pub otp_url: String,
pub otp_auth: String,
pub roles: String,
pub items: HashMap<String, String>,
}
Fields§
§id: String
§name: String
§fullname: String
§description: String
§email: String
§password: String
§otp_code: String
§otp_url: String
§otp_auth: String
§roles: String
§items: HashMap<String, String>
Trait Implementations§
source§impl<'de> Deserialize<'de> for UserData
impl<'de> Deserialize<'de> for UserData
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