pub struct User {
pub about: Option<String>,
pub blogs: Option<UserBlogs>,
pub created: Option<String>,
pub display_name: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub locale: Option<UserLocale>,
pub self_link: Option<String>,
pub url: Option<String>,
}Expand description
Fields§
§about: Option<String>Profile summary information.
blogs: Option<UserBlogs>The container of blogs for this user.
created: Option<String>The timestamp of when this profile was created, in seconds since epoch.
display_name: Option<String>The display name.
id: Option<String>The identifier for this User.
kind: Option<String>The kind of this entity. Always blogger#user.
locale: Option<UserLocale>This user’s locale
self_link: Option<String>The API REST URL to fetch this resource from.
url: Option<String>The user’s profile page.
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
impl Resource for User
impl ResponseResult for User
Auto Trait Implementations§
impl Freeze for User
impl RefUnwindSafe for User
impl Send for User
impl Sync for User
impl Unpin for User
impl UnwindSafe for User
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