pub struct JigCurationCommentResponse {
pub id: CommentId,
pub jig_id: JigId,
pub value: String,
pub created_at: Option<DateTime<Utc>>,
pub author_id: Uuid,
pub author_name: String,
}
Expand description
Curation data for JIGS
Fields§
§id: CommentId
ID of comment
jig_id: JigId
ID of Jig
value: String
Curator comment
created_at: Option<DateTime<Utc>>
When comment was submitted
ID of commenter
Name of commenter
Trait Implementations§
Source§impl Debug for JigCurationCommentResponse
impl Debug for JigCurationCommentResponse
Source§impl<'de> Deserialize<'de> for JigCurationCommentResponse
impl<'de> Deserialize<'de> for JigCurationCommentResponse
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 JigCurationCommentResponse
impl RefUnwindSafe for JigCurationCommentResponse
impl Send for JigCurationCommentResponse
impl Sync for JigCurationCommentResponse
impl Unpin for JigCurationCommentResponse
impl UnwindSafe for JigCurationCommentResponse
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