pub struct Comment {Show 15 fields
pub verified: bool,
pub id: String,
pub likes: u32,
pub edited: bool,
pub content: String,
pub content_html: String,
pub published: u64,
pub published_text: String,
pub author: String,
pub author_thumbnails: Vec<CommonImage>,
pub author_id: String,
pub author_url: String,
pub channel_owner: bool,
pub heart: Option<CreatorHeart>,
pub replies: Option<Replies>,
}Fields§
§verified: bool§id: String§likes: u32§edited: bool§content: String§content_html: String§published: u64§published_text: String§channel_owner: bool§heart: Option<CreatorHeart>§replies: Option<Replies>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Comment
impl<'de> Deserialize<'de> for Comment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Comment
impl RefUnwindSafe for Comment
impl Send for Comment
impl Sync for Comment
impl Unpin for Comment
impl UnwindSafe for Comment
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more