pub struct WorkflowStatus {
    pub id: String,
    pub name: String,
    pub properties: Option<WorkflowStatusProperties>,
}Expand description
WorkflowStatus : Details of a workflow status.
Fields§
§id: StringThe ID of the issue status.
name: StringThe name of the status in the workflow.
properties: Option<WorkflowStatusProperties>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<'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