Struct google_youtube3::api::CommentSnippet [−][src]
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
no description provided
Link to the author's YouTube channel, if any.
The name of the user who posted the comment.
The URL for the avatar of the user who posted the comment.
can_rate: Option<bool>Whether the current viewer can rate this 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.
like_count: Option<u32>The total number of likes this comment has received.
moderation_status: Option<String>The comment's moderation status. Will not be set if the comments were requested through the id filter.
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 originally published.
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.
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 the comment was last updated.
video_id: Option<String>The ID of the video the comment refers to, if any.
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.
Trait Implementations
impl Clone for CommentSnippet[src]
fn clone(&self) -> CommentSnippet[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for CommentSnippet[src]
impl Default for CommentSnippet[src]
fn default() -> CommentSnippet[src]
impl<'de> Deserialize<'de> for CommentSnippet[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for CommentSnippet[src]
impl Serialize for CommentSnippet[src]
Auto Trait Implementations
impl RefUnwindSafe for CommentSnippet[src]
impl Send for CommentSnippet[src]
impl Sync for CommentSnippet[src]
impl Unpin for CommentSnippet[src]
impl UnwindSafe for CommentSnippet[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,