Struct azure_devops_rust_api::wit::models::WorkItemStateTransition
source · pub struct WorkItemStateTransition {
pub actions: Vec<String>,
pub to: Option<String>,
}Expand description
Describes a state transition in a work item.
Fields§
§actions: Vec<String>Gets a list of actions needed to transition to that state.
to: Option<String>Name of the next state.
Implementations§
Trait Implementations§
source§impl Clone for WorkItemStateTransition
impl Clone for WorkItemStateTransition
source§fn clone(&self) -> WorkItemStateTransition
fn clone(&self) -> WorkItemStateTransition
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 Debug for WorkItemStateTransition
impl Debug for WorkItemStateTransition
source§impl Default for WorkItemStateTransition
impl Default for WorkItemStateTransition
source§fn default() -> WorkItemStateTransition
fn default() -> WorkItemStateTransition
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WorkItemStateTransition
impl<'de> Deserialize<'de> for WorkItemStateTransition
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<WorkItemStateTransition> for WorkItemStateTransition
impl PartialEq<WorkItemStateTransition> for WorkItemStateTransition
source§fn eq(&self, other: &WorkItemStateTransition) -> bool
fn eq(&self, other: &WorkItemStateTransition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.