pub struct InputUpdateTask {
pub title: Option<String>,
pub group: Option<String>,
pub description: Option<String>,
pub status: Option<String>,
pub flag: Option<bool>,
pub start_date: Option<i64>,
pub end_date: Option<i64>,
pub order: Option<i32>,
pub due_date: Option<i64>,
pub assignee: Option<String>,
pub mandatory: Option<bool>,
}Fields§
§title: Option<String>§group: Option<String>§description: Option<String>§status: Option<String>§flag: Option<bool>§start_date: Option<i64>§end_date: Option<i64>§order: Option<i32>§due_date: Option<i64>§assignee: Option<String>§mandatory: Option<bool>Implementations§
Source§impl InputUpdateTask
impl InputUpdateTask
pub fn new() -> InputUpdateTask
Trait Implementations§
Source§impl Clone for InputUpdateTask
impl Clone for InputUpdateTask
Source§fn clone(&self) -> InputUpdateTask
fn clone(&self) -> InputUpdateTask
Returns a duplicate 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 InputUpdateTask
impl Debug for InputUpdateTask
Source§impl Default for InputUpdateTask
impl Default for InputUpdateTask
Source§fn default() -> InputUpdateTask
fn default() -> InputUpdateTask
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputUpdateTask
impl<'de> Deserialize<'de> for InputUpdateTask
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
Source§impl PartialEq for InputUpdateTask
impl PartialEq for InputUpdateTask
Source§impl Serialize for InputUpdateTask
impl Serialize for InputUpdateTask
impl StructuralPartialEq for InputUpdateTask
Auto Trait Implementations§
impl Freeze for InputUpdateTask
impl RefUnwindSafe for InputUpdateTask
impl Send for InputUpdateTask
impl Sync for InputUpdateTask
impl Unpin for InputUpdateTask
impl UnwindSafe for InputUpdateTask
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