pub struct PostPerUserInfo {
pub blog_id: Option<String>,
pub has_edit_access: Option<bool>,
pub kind: Option<String>,
pub post_id: Option<String>,
pub user_id: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§blog_id: Option<String>ID of the Blog that the post resource belongs to.
has_edit_access: Option<bool>True if the user has Author level access to the post.
kind: Option<String>The kind of this entity. Always blogger#postPerUserInfo.
post_id: Option<String>ID of the Post resource.
user_id: Option<String>ID of the User.
Trait Implementations§
Source§impl Clone for PostPerUserInfo
impl Clone for PostPerUserInfo
Source§fn clone(&self) -> PostPerUserInfo
fn clone(&self) -> PostPerUserInfo
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 PostPerUserInfo
impl Debug for PostPerUserInfo
Source§impl Default for PostPerUserInfo
impl Default for PostPerUserInfo
Source§fn default() -> PostPerUserInfo
fn default() -> PostPerUserInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostPerUserInfo
impl<'de> Deserialize<'de> for PostPerUserInfo
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 PostPerUserInfo
impl Serialize for PostPerUserInfo
impl Part for PostPerUserInfo
Auto Trait Implementations§
impl Freeze for PostPerUserInfo
impl RefUnwindSafe for PostPerUserInfo
impl Send for PostPerUserInfo
impl Sync for PostPerUserInfo
impl Unpin for PostPerUserInfo
impl UnwindSafe for PostPerUserInfo
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