[][src]Struct google_blogger3::Post

pub struct Post {
    pub status: Option<String>,
    pub updated: Option<String>,
    pub reader_comments: Option<String>,
    pub labels: Option<Vec<String>>,
    pub replies: Option<PostReplies>,
    pub images: Option<Vec<PostImages>>,
    pub id: Option<String>,
    pub blog: Option<PostBlog>,
    pub kind: Option<String>,
    pub title_link: Option<String>,
    pub author: Option<PostAuthor>,
    pub url: Option<String>,
    pub title: Option<String>,
    pub custom_meta_data: Option<String>,
    pub content: Option<String>,
    pub etag: Option<String>,
    pub location: Option<PostLocation>,
    pub published: Option<String>,
    pub self_link: 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>

Status of the post. Only set for admin-level requests

updated: Option<String>

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

reader_comments: Option<String>

Comment control and display setting for readers of this post.

labels: Option<Vec<String>>

The list of labels this Post was tagged with.

replies: Option<PostReplies>

The container of comments on this Post.

images: Option<Vec<PostImages>>

Display image for the Post.

id: Option<String>

The identifier of this Post.

blog: Option<PostBlog>

Data about the blog containing this Post.

kind: Option<String>

The kind of this entity. Always blogger#post

title_link: Option<String>

The title link URL, similar to atom's related link.

author: Option<PostAuthor>

The author of this Post.

url: Option<String>

The URL where this Post is displayed.

title: Option<String>

The title of the Post.

custom_meta_data: Option<String>

The JSON meta-data for the Post.

content: Option<String>

The content of the Post. May contain HTML markup.

etag: Option<String>

Etag of the resource.

location: Option<PostLocation>

The location for geotagged posts.

published: Option<String>

RFC 3339 date-time when this Post was published.

self_link: Option<String>

The API REST URL to fetch this resource from.

Trait Implementations

impl Resource for Post[src]

impl ResponseResult for Post[src]

impl RequestValue for Post[src]

impl Clone for Post[src]

impl Default for Post[src]

impl Debug for Post[src]

impl Serialize for Post[src]

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

Auto Trait Implementations

impl Send for Post

impl Sync for Post

impl Unpin for Post

impl UnwindSafe for Post

impl RefUnwindSafe for Post

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]