pub struct JigCurationUpdateRequest {
pub display_name: Option<bool>,
pub language: Option<bool>,
pub goals: Option<bool>,
pub categories: Option<bool>,
pub description: Option<bool>,
pub age_ranges: Option<bool>,
pub affiliations: Option<bool>,
pub additional_resources: Option<bool>,
pub curation_status: Option<JigCurationStatus>,
}
Expand description
Curation data for JIGS
Fields§
§display_name: Option<bool>
Display name of JIG
language: Option<bool>
Language of JIG
goals: Option<bool>
Goals of JIG
categories: Option<bool>
Categories of JIG
description: Option<bool>
Descriptions of JIG
age_ranges: Option<bool>
Age ranges of JIG
affiliations: Option<bool>
Affiliations of JIG
additional_resources: Option<bool>
Addtional resources of JIG
curation_status: Option<JigCurationStatus>
Curation status of Jig
Trait Implementations§
Source§impl Clone for JigCurationUpdateRequest
impl Clone for JigCurationUpdateRequest
Source§fn clone(&self) -> JigCurationUpdateRequest
fn clone(&self) -> JigCurationUpdateRequest
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 JigCurationUpdateRequest
impl Debug for JigCurationUpdateRequest
Source§impl Default for JigCurationUpdateRequest
impl Default for JigCurationUpdateRequest
Source§fn default() -> JigCurationUpdateRequest
fn default() -> JigCurationUpdateRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JigCurationUpdateRequest
impl<'de> Deserialize<'de> for JigCurationUpdateRequest
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 JigCurationUpdateRequest
impl RefUnwindSafe for JigCurationUpdateRequest
impl Send for JigCurationUpdateRequest
impl Sync for JigCurationUpdateRequest
impl Unpin for JigCurationUpdateRequest
impl UnwindSafe for JigCurationUpdateRequest
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