[][src]Struct google_blogger3::Blog

pub struct Blog {
    pub status: Option<String>,
    pub kind: Option<String>,
    pub description: Option<String>,
    pub locale: Option<BlogLocale>,
    pub custom_meta_data: Option<String>,
    pub posts: Option<BlogPosts>,
    pub updated: Option<String>,
    pub id: Option<String>,
    pub url: Option<String>,
    pub published: Option<String>,
    pub pages: Option<BlogPages>,
    pub self_link: Option<String>,
    pub name: Option<String>,
}

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).

Fields

status: Option<String>

The status of the blog.

kind: Option<String>

The kind of this entry. Always blogger#blog

description: Option<String>

The description of this blog. This is displayed underneath the title.

locale: Option<BlogLocale>

The locale this Blog is set to.

custom_meta_data: Option<String>

The JSON custom meta-data for the Blog

posts: Option<BlogPosts>

The container of posts in this blog.

updated: Option<String>

RFC 3339 date-time when this blog was last updated.

id: Option<String>

The identifier for this resource.

url: Option<String>

The URL where this blog is published.

published: Option<String>

RFC 3339 date-time when this blog was published.

pages: Option<BlogPages>

The container of pages in this blog.

self_link: Option<String>

The API REST URL to fetch this resource from.

name: Option<String>

The name of this blog. This is displayed as the title.

Trait Implementations

impl Resource for Blog[src]

impl ResponseResult for Blog[src]

impl Clone for Blog[src]

impl Default for Blog[src]

impl Debug for Blog[src]

impl Serialize for Blog[src]

impl<'de> Deserialize<'de> for Blog[src]

Auto Trait Implementations

impl Send for Blog

impl Sync for Blog

impl Unpin for Blog

impl UnwindSafe for Blog

impl RefUnwindSafe for Blog

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]