pub struct WorkflowStateCreateInput {
pub id: Option<String>,
pub type: Option<String>,
pub name: Option<String>,
pub color: Option<String>,
pub description: Option<String>,
pub position: Option<f64>,
pub team_id: Option<String>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
type: Option<String>The workflow type.
name: Option<String>The name of the state.
color: Option<String>The color of the state.
description: Option<String>The description of the state.
position: Option<f64>The position of the state.
team_id: Option<String>The team associated with the state.
Trait Implementations§
Source§impl Clone for WorkflowStateCreateInput
impl Clone for WorkflowStateCreateInput
Source§fn clone(&self) -> WorkflowStateCreateInput
fn clone(&self) -> WorkflowStateCreateInput
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 WorkflowStateCreateInput
impl Debug for WorkflowStateCreateInput
Source§impl Default for WorkflowStateCreateInput
impl Default for WorkflowStateCreateInput
Source§fn default() -> WorkflowStateCreateInput
fn default() -> WorkflowStateCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowStateCreateInput
impl<'de> Deserialize<'de> for WorkflowStateCreateInput
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 WorkflowStateCreateInput
impl RefUnwindSafe for WorkflowStateCreateInput
impl Send for WorkflowStateCreateInput
impl Sync for WorkflowStateCreateInput
impl Unpin for WorkflowStateCreateInput
impl UnwindSafe for WorkflowStateCreateInput
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