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 for WorkItemNextStateOnTransition
impl PartialEq 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 ==.impl StructuralPartialEq for WorkItemNextStateOnTransition
Auto Trait Implementations§
impl Freeze for WorkItemNextStateOnTransition
impl RefUnwindSafe for WorkItemNextStateOnTransition
impl Send for WorkItemNextStateOnTransition
impl Sync for WorkItemNextStateOnTransition
impl Unpin for WorkItemNextStateOnTransition
impl UnwindSafe for WorkItemNextStateOnTransition
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