[][src]Struct google_plus1::CommentObject

pub struct CommentObject {
    pub content: Option<String>,
    pub object_type: Option<String>,
    pub original_content: Option<String>,
}

The object of this comment.

This type is not used in any activity, and only used as part of another schema.

Fields

content: Option<String>

The HTML-formatted content, suitable for display.

object_type: Option<String>

The object type of this comment. Possible values are:

  • "comment" - A comment in reply to an activity.
original_content: Option<String>

The content (text) as provided by the author, stored without any HTML formatting. When creating or updating a comment, this value must be supplied as plain text in the request.

Trait Implementations

impl Clone for CommentObject[src]

impl Debug for CommentObject[src]

impl Default for CommentObject[src]

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

impl NestedType for CommentObject[src]

impl Part for CommentObject[src]

impl Serialize for CommentObject[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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 = Infallible

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> Typeable for T where
    T: Any