pub struct Workflow {
pub id: i32,
pub node_id: String,
pub name: String,
pub path: String,
pub state: State,
pub created_at: String,
pub updated_at: String,
pub url: String,
pub html_url: String,
pub badge_url: String,
pub deleted_at: Option<String>,
}
Expand description
Workflow : A GitHub Actions workflow
Fields§
§id: i32
§node_id: String
§name: String
§path: String
§state: State
§created_at: String
§updated_at: String
§url: String
§html_url: String
§badge_url: String
§deleted_at: Option<String>
Implementations§
Trait 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
impl StructuralPartialEq for Workflow
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