pub struct ProjectStatusCreateInput {
pub id: Option<String>,
pub name: Option<String>,
pub color: Option<String>,
pub description: Option<String>,
pub position: Option<f64>,
pub type: Option<ProjectStatusType>,
pub indefinite: Option<bool>,
}Fields§
§id: Option<String>§name: Option<String>§color: Option<String>§description: Option<String>§position: Option<f64>§type: Option<ProjectStatusType>§indefinite: Option<bool>Trait Implementations§
Source§impl Clone for ProjectStatusCreateInput
impl Clone for ProjectStatusCreateInput
Source§fn clone(&self) -> ProjectStatusCreateInput
fn clone(&self) -> ProjectStatusCreateInput
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 ProjectStatusCreateInput
impl Debug for ProjectStatusCreateInput
Source§impl Default for ProjectStatusCreateInput
impl Default for ProjectStatusCreateInput
Source§fn default() -> ProjectStatusCreateInput
fn default() -> ProjectStatusCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectStatusCreateInput
impl<'de> Deserialize<'de> for ProjectStatusCreateInput
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 ProjectStatusCreateInput
impl RefUnwindSafe for ProjectStatusCreateInput
impl Send for ProjectStatusCreateInput
impl Sync for ProjectStatusCreateInput
impl Unpin for ProjectStatusCreateInput
impl UnwindSafe for ProjectStatusCreateInput
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