pub struct WorkflowCreateResponse {
pub statuses: Option<Vec<JiraWorkflowStatus>>,
pub workflows: Option<Vec<JiraWorkflow>>,
}
Expand description
WorkflowCreateResponse : Details of the created workflows and statuses.
Fields§
§statuses: Option<Vec<JiraWorkflowStatus>>
List of created statuses.
workflows: Option<Vec<JiraWorkflow>>
List of created workflows.
Implementations§
Source§impl WorkflowCreateResponse
impl WorkflowCreateResponse
Sourcepub fn new() -> WorkflowCreateResponse
pub fn new() -> WorkflowCreateResponse
Details of the created workflows and statuses.
Trait Implementations§
Source§impl Clone for WorkflowCreateResponse
impl Clone for WorkflowCreateResponse
Source§fn clone(&self) -> WorkflowCreateResponse
fn clone(&self) -> WorkflowCreateResponse
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 WorkflowCreateResponse
impl Debug for WorkflowCreateResponse
Source§impl Default for WorkflowCreateResponse
impl Default for WorkflowCreateResponse
Source§fn default() -> WorkflowCreateResponse
fn default() -> WorkflowCreateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowCreateResponse
impl<'de> Deserialize<'de> for WorkflowCreateResponse
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 WorkflowCreateResponse
impl PartialEq for WorkflowCreateResponse
Source§impl Serialize for WorkflowCreateResponse
impl Serialize for WorkflowCreateResponse
impl StructuralPartialEq for WorkflowCreateResponse
Auto Trait Implementations§
impl Freeze for WorkflowCreateResponse
impl RefUnwindSafe for WorkflowCreateResponse
impl Send for WorkflowCreateResponse
impl Sync for WorkflowCreateResponse
impl Unpin for WorkflowCreateResponse
impl UnwindSafe for WorkflowCreateResponse
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