pub struct Workflow {
pub pipeline_id: String,
pub canceled_by: Option<String>,
pub id: String,
pub name: String,
pub project_slug: String,
pub errored_by: Option<String>,
pub tag: Option<String>,
pub status: WorkflowStatus,
pub started_by: String,
pub pipeline_number: i64,
pub created_at: String,
pub stopped_at: String,
}Fields§
§pipeline_id: String§canceled_by: Option<String>§id: String§name: String§project_slug: String§errored_by: Option<String>§tag: Option<String>§status: WorkflowStatus§started_by: String§pipeline_number: i64§created_at: String§stopped_at: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Workflow
impl<'de> Deserialize<'de> for Workflow
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
Auto Trait Implementations§
impl Freeze for Workflow
impl RefUnwindSafe for Workflow
impl Send for Workflow
impl Sync for Workflow
impl Unpin for Workflow
impl UnwindSafe for Workflow
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