pub struct JigCurationData {
pub jig_id: JigId,
pub fields_done: JigCurationFieldsDone,
pub curation_status: JigCurationStatus,
pub comments: Vec<JigCurationComment>,
pub reports: Vec<JigReport>,
}
Expand description
Curation data for JIGS
Fields§
§jig_id: JigId
Jig ID for curation
fields_done: JigCurationFieldsDone
Fields curated by Admin
curation_status: JigCurationStatus
Status for curation
comments: Vec<JigCurationComment>
Comments from curator (not updatable)
reports: Vec<JigReport>
Reports for Jig from users (not updatable)
Trait Implementations§
Source§impl Clone for JigCurationData
impl Clone for JigCurationData
Source§fn clone(&self) -> JigCurationData
fn clone(&self) -> JigCurationData
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 JigCurationData
impl Debug for JigCurationData
Source§impl<'de> Deserialize<'de> for JigCurationData
impl<'de> Deserialize<'de> for JigCurationData
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 JigCurationData
impl RefUnwindSafe for JigCurationData
impl Send for JigCurationData
impl Sync for JigCurationData
impl Unpin for JigCurationData
impl UnwindSafe for JigCurationData
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