pub struct WorkflowStatus {
pub id: String,
pub name: String,
pub properties: Option<HashMap<String, Value>>,
}
Expand description
WorkflowStatus : Details of a workflow status.
Fields§
§id: String
The ID of the issue status.
name: String
The name of the status in the workflow.
properties: Option<HashMap<String, Value>>
Additional properties that modify the behavior of issues in this status. Supports the properties jira.issue.editable
and issueEditable
(deprecated) that indicate whether issues are editable.
Implementations§
Source§impl WorkflowStatus
impl WorkflowStatus
Sourcepub fn new(id: String, name: String) -> WorkflowStatus
pub fn new(id: String, name: String) -> WorkflowStatus
Details of a workflow status.
Trait Implementations§
Source§impl Clone for WorkflowStatus
impl Clone for WorkflowStatus
Source§fn clone(&self) -> WorkflowStatus
fn clone(&self) -> WorkflowStatus
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 WorkflowStatus
impl Debug for WorkflowStatus
Source§impl Default for WorkflowStatus
impl Default for WorkflowStatus
Source§fn default() -> WorkflowStatus
fn default() -> WorkflowStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowStatus
impl<'de> Deserialize<'de> for WorkflowStatus
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 WorkflowStatus
impl PartialEq for WorkflowStatus
Source§impl Serialize for WorkflowStatus
impl Serialize for WorkflowStatus
impl StructuralPartialEq for WorkflowStatus
Auto Trait Implementations§
impl Freeze for WorkflowStatus
impl RefUnwindSafe for WorkflowStatus
impl Send for WorkflowStatus
impl Sync for WorkflowStatus
impl Unpin for WorkflowStatus
impl UnwindSafe for WorkflowStatus
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