use time::OffsetDateTime; use crate::error::Error; use crate::Result; #[derive(sqlx::FromRow)] pub struct Comment { /// id of the comment in the thread comment_id: Option, /// text of the comment pub text: String, /// id of artwork thread comment is in pub artwork_id: i32, /// comment creation time created_at: Option, /// comments that are mentioned by the comment pub in_reply_to_ids: Vec, /// comments that mention the comment mentioned_by_ids: Vec, } impl Comment { pub fn id(&self) -> Option { self.comment_id } pub fn created_at(&self) -> Option { self.created_at } pub fn mentioned_by_ids(&self) -> &Vec { &self.mentioned_by_ids } }