pub struct PostUserInfo {
pub kind: Option<String>,
pub post: Option<Post>,
pub post_user_info: Option<PostPerUserInfo>,
}Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- get post user infos (response)
- list post user infos (none)
Fields§
§kind: Option<String>The kind of this entity. Always blogger#postUserInfo.
post: Option<Post>The Post resource.
post_user_info: Option<PostPerUserInfo>Information about a User for the Post.
Trait Implementations§
Source§impl Clone for PostUserInfo
impl Clone for PostUserInfo
Source§fn clone(&self) -> PostUserInfo
fn clone(&self) -> PostUserInfo
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 PostUserInfo
impl Debug for PostUserInfo
Source§impl Default for PostUserInfo
impl Default for PostUserInfo
Source§fn default() -> PostUserInfo
fn default() -> PostUserInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostUserInfo
impl<'de> Deserialize<'de> for PostUserInfo
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 Serialize for PostUserInfo
impl Serialize for PostUserInfo
impl Resource for PostUserInfo
impl ResponseResult for PostUserInfo
Auto Trait Implementations§
impl Freeze for PostUserInfo
impl RefUnwindSafe for PostUserInfo
impl Send for PostUserInfo
impl Sync for PostUserInfo
impl Unpin for PostUserInfo
impl UnwindSafe for PostUserInfo
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