[][src]Struct google_blogger3::Comment

pub struct Comment {
    pub status: Option<String>,
    pub in_reply_to: Option<CommentInReplyTo>,
    pub kind: Option<String>,
    pub author: Option<CommentAuthor>,
    pub updated: Option<String>,
    pub blog: Option<CommentBlog>,
    pub published: Option<String>,
    pub post: Option<CommentPost>,
    pub content: Option<String>,
    pub id: 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>

The status of the comment (only populated for admin users)

in_reply_to: Option<CommentInReplyTo>

Data about the comment this is in reply to.

kind: Option<String>

The kind of this entry. Always blogger#comment

author: Option<CommentAuthor>

The author of this Comment.

updated: Option<String>

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

blog: Option<CommentBlog>

Data about the blog containing this comment.

published: Option<String>

RFC 3339 date-time when this comment was published.

post: Option<CommentPost>

Data about the post containing this comment.

content: Option<String>

The actual content of the comment. May include HTML markup.

id: Option<String>

The identifier for this resource.

self_link: Option<String>

The API REST URL to fetch this resource from.

Trait Implementations

impl Resource for Comment[src]

impl ResponseResult for Comment[src]

impl Clone for Comment[src]

impl Default for Comment[src]

impl Debug for Comment[src]

impl Serialize for Comment[src]

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

Auto Trait Implementations

impl Send for Comment

impl Sync for Comment

impl Unpin for Comment

impl UnwindSafe for Comment

impl RefUnwindSafe for Comment

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]