pub struct BasicTask {
pub brand_store_set: Option<String>,
pub description: Option<String>,
pub has_products: Option<bool>,
pub is_required: Option<bool>,
pub lower_limit: Option<String>,
pub multiple_choices: Option<String>,
pub number: Option<i64>,
pub purpose: Option<String>,
pub references: Option<String>,
pub show_scanned_item: Option<bool>,
pub type_: String,
pub upper_limit: Option<String>,
}
Fields§
§brand_store_set: Option<String>
§description: Option<String>
§has_products: Option<bool>
§is_required: Option<bool>
§lower_limit: Option<String>
§multiple_choices: Option<String>
§number: Option<i64>
§purpose: Option<String>
§references: Option<String>
§show_scanned_item: Option<bool>
§type_: String
§upper_limit: Option<String>
Trait Implementations§
source§impl<'de> Deserialize<'de> for BasicTask
impl<'de> Deserialize<'de> for BasicTask
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 RefUnwindSafe for BasicTask
impl Send for BasicTask
impl Sync for BasicTask
impl Unpin for BasicTask
impl UnwindSafe for BasicTask
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