pub struct JigCurationComment {
pub id: CommentId,
pub jig_id: JigId,
pub value: String,
pub created_at: DateTime<Utc>,
pub author_id: Uuid,
}
Expand description
Curation data for JIGS
Fields§
§id: CommentId
Comment ID
jig_id: JigId
Jig ID for comment
value: String
Comment
created_at: DateTime<Utc>
When comment was submitted
ID of commenter
Trait Implementations§
Source§impl Clone for JigCurationComment
impl Clone for JigCurationComment
Source§fn clone(&self) -> JigCurationComment
fn clone(&self) -> JigCurationComment
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for JigCurationComment
impl Debug for JigCurationComment
Source§impl<'de> Deserialize<'de> for JigCurationComment
impl<'de> Deserialize<'de> for JigCurationComment
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 JigCurationComment
impl RefUnwindSafe for JigCurationComment
impl Send for JigCurationComment
impl Sync for JigCurationComment
impl Unpin for JigCurationComment
impl UnwindSafe for JigCurationComment
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