pub struct JiraWorkflowStatus {
pub description: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub scope: Option<Box<WorkflowScope>>,
pub status_category: Option<StatusCategory>,
pub status_reference: Option<String>,
pub usages: Option<Option<Vec<ProjectIssueTypes>>>,
}
Expand description
JiraWorkflowStatus : Details of a status.
Fields§
§description: Option<String>
The description of the status.
id: Option<String>
The ID of the status.
name: Option<String>
The name of the status.
scope: Option<Box<WorkflowScope>>
§status_category: Option<StatusCategory>
The category of the status.
status_reference: Option<String>
The reference of the status.
usages: Option<Option<Vec<ProjectIssueTypes>>>
Deprecated. See the deprecation notice for details. The statuses.usages
expand is an optional parameter that can be used when reading and updating statuses in Jira. It provides additional information about the projects and issue types associated with the requested statuses.
Implementations§
Source§impl JiraWorkflowStatus
impl JiraWorkflowStatus
Sourcepub fn new() -> JiraWorkflowStatus
pub fn new() -> JiraWorkflowStatus
Details of a status.
Trait Implementations§
Source§impl Clone for JiraWorkflowStatus
impl Clone for JiraWorkflowStatus
Source§fn clone(&self) -> JiraWorkflowStatus
fn clone(&self) -> JiraWorkflowStatus
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 JiraWorkflowStatus
impl Debug for JiraWorkflowStatus
Source§impl Default for JiraWorkflowStatus
impl Default for JiraWorkflowStatus
Source§fn default() -> JiraWorkflowStatus
fn default() -> JiraWorkflowStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JiraWorkflowStatus
impl<'de> Deserialize<'de> for JiraWorkflowStatus
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 JiraWorkflowStatus
impl PartialEq for JiraWorkflowStatus
Source§impl Serialize for JiraWorkflowStatus
impl Serialize for JiraWorkflowStatus
impl StructuralPartialEq for JiraWorkflowStatus
Auto Trait Implementations§
impl Freeze for JiraWorkflowStatus
impl RefUnwindSafe for JiraWorkflowStatus
impl Send for JiraWorkflowStatus
impl Sync for JiraWorkflowStatus
impl Unpin for JiraWorkflowStatus
impl UnwindSafe for JiraWorkflowStatus
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