pub struct WorkItemNextStateOnTransition {
pub error_code: Option<String>,
pub id: Option<i32>,
pub message: Option<String>,
pub state_on_transition: Option<String>,
}Expand description
Describes the next state for a work item.
Fields§
§error_code: Option<String>Error code if there is no next state transition possible.
id: Option<i32>Work item ID.
message: Option<String>Error message if there is no next state transition possible.
state_on_transition: Option<String>Name of the next state on transition.
Implementations§
Trait Implementations§
source§impl Clone for WorkItemNextStateOnTransition
impl Clone for WorkItemNextStateOnTransition
source§fn clone(&self) -> WorkItemNextStateOnTransition
fn clone(&self) -> WorkItemNextStateOnTransition
Returns a copy 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 Default for WorkItemNextStateOnTransition
impl Default for WorkItemNextStateOnTransition
source§fn default() -> WorkItemNextStateOnTransition
fn default() -> WorkItemNextStateOnTransition
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WorkItemNextStateOnTransition
impl<'de> Deserialize<'de> for WorkItemNextStateOnTransition
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<WorkItemNextStateOnTransition> for WorkItemNextStateOnTransition
impl PartialEq<WorkItemNextStateOnTransition> for WorkItemNextStateOnTransition
source§fn eq(&self, other: &WorkItemNextStateOnTransition) -> bool
fn eq(&self, other: &WorkItemNextStateOnTransition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.