pub struct BlogPerUserInfo {
pub blog_id: Option<String>,
pub has_admin_access: Option<bool>,
pub kind: Option<String>,
pub photos_album_key: Option<String>,
pub role: 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 resource.
has_admin_access: Option<bool>True if the user has Admin level access to the blog.
kind: Option<String>The kind of this entity. Always blogger#blogPerUserInfo.
photos_album_key: Option<String>The Photo Album Key for the user when adding photos to the blog.
role: Option<String>Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER).
user_id: Option<String>ID of the User.
Trait Implementations§
Source§impl Clone for BlogPerUserInfo
impl Clone for BlogPerUserInfo
Source§fn clone(&self) -> BlogPerUserInfo
fn clone(&self) -> BlogPerUserInfo
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 BlogPerUserInfo
impl Debug for BlogPerUserInfo
Source§impl Default for BlogPerUserInfo
impl Default for BlogPerUserInfo
Source§fn default() -> BlogPerUserInfo
fn default() -> BlogPerUserInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BlogPerUserInfo
impl<'de> Deserialize<'de> for BlogPerUserInfo
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 BlogPerUserInfo
impl Serialize for BlogPerUserInfo
impl Part for BlogPerUserInfo
Auto Trait Implementations§
impl Freeze for BlogPerUserInfo
impl RefUnwindSafe for BlogPerUserInfo
impl Send for BlogPerUserInfo
impl Sync for BlogPerUserInfo
impl Unpin for BlogPerUserInfo
impl UnwindSafe for BlogPerUserInfo
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