[][src]Struct google_youtube3::CommentSnippet

pub struct CommentSnippet {
    pub author_channel_url: Option<String>,
    pub author_profile_image_url: Option<String>,
    pub author_display_name: Option<String>,
    pub channel_id: Option<String>,
    pub viewer_rating: Option<String>,
    pub moderation_status: Option<String>,
    pub video_id: Option<String>,
    pub author_channel_id: Option<String>,
    pub parent_id: Option<String>,
    pub published_at: Option<String>,
    pub can_rate: Option<bool>,
    pub text_original: Option<String>,
    pub updated_at: Option<String>,
    pub like_count: Option<u32>,
    pub text_display: Option<String>,
}

Basic details about a comment, such as its author and text.

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

Fields

author_channel_url: Option<String>

Link to the author's YouTube channel, if any.

author_profile_image_url: Option<String>

The URL for the avatar of the user who posted the comment.

author_display_name: Option<String>

The name of the user who posted the comment.

channel_id: Option<String>

The id of the corresponding YouTube channel. In case of a channel comment this is the channel the comment refers to. In case of a video comment it's the video's channel.

viewer_rating: Option<String>

The rating the viewer has given to this comment. For the time being this will never return RATE_TYPE_DISLIKE and instead return RATE_TYPE_NONE. This may change in the future.

moderation_status: Option<String>

The comment's moderation status. Will not be set if the comments were requested through the id filter.

video_id: Option<String>

The ID of the video the comment refers to, if any.

author_channel_id: Option<String>

The id of the author's YouTube channel, if any.

parent_id: Option<String>

The unique id of the parent comment, only set for replies.

published_at: Option<String>

The date and time when the comment was orignally published. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

can_rate: Option<bool>

Whether the current viewer can rate this comment.

text_original: Option<String>

The comment's original raw text as initially posted or last updated. The original text will only be returned if it is accessible to the viewer, which is only guaranteed if the viewer is the comment's author.

updated_at: Option<String>

The date and time when was last updated . The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

like_count: Option<u32>

The total number of likes this comment has received.

text_display: Option<String>

The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc.

Trait Implementations

impl Part for CommentSnippet[src]

impl Default for CommentSnippet[src]

impl Clone for CommentSnippet[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for CommentSnippet[src]

impl Serialize for CommentSnippet[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<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

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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