pub struct ProjectStatusUpdateInput {
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§
§name: Option<String>The name of the status.
color: Option<String>The UI color of the status as a HEX string.
description: Option<String>Description of the status.
position: Option<f64>The position of the status in the workspace’s project flow.
type: Option<ProjectStatusType>The type of the project status.
indefinite: Option<bool>Whether or not a project can be in this status indefinitely.
Trait Implementations§
Source§impl Clone for ProjectStatusUpdateInput
impl Clone for ProjectStatusUpdateInput
Source§fn clone(&self) -> ProjectStatusUpdateInput
fn clone(&self) -> ProjectStatusUpdateInput
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 ProjectStatusUpdateInput
impl Debug for ProjectStatusUpdateInput
Source§impl Default for ProjectStatusUpdateInput
impl Default for ProjectStatusUpdateInput
Source§fn default() -> ProjectStatusUpdateInput
fn default() -> ProjectStatusUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectStatusUpdateInput
impl<'de> Deserialize<'de> for ProjectStatusUpdateInput
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 ProjectStatusUpdateInput
impl RefUnwindSafe for ProjectStatusUpdateInput
impl Send for ProjectStatusUpdateInput
impl Sync for ProjectStatusUpdateInput
impl Unpin for ProjectStatusUpdateInput
impl UnwindSafe for ProjectStatusUpdateInput
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