Struct wallabag_api::types::User
source · pub struct User {
pub id: ID,
pub username: String,
pub email: String,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
}Expand description
A struct representing a user. (ie. you) Fields should be self-explanatory.
Fields§
§id: ID§username: String§email: String§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>Trait Implementations§
source§impl<'de> Deserialize<'de> for User
impl<'de> Deserialize<'de> for User
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