pub struct ActionWorkflow {
pub badge_url: Option<String>,
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub html_url: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub path: Option<String>,
pub state: Option<String>,
pub updated_at: Option<String>,
pub url: Option<String>,
}Expand description
ActionWorkflow : ActionWorkflow represents a ActionWorkflow
Fields§
§badge_url: Option<String>BadgeURL is the URL for the workflow badge
created_at: Option<String>§deleted_at: Option<String>§html_url: Option<String>HTMLURL is the web URL for viewing the workflow
id: Option<String>ID is the unique identifier for the workflow
name: Option<String>Name is the name of the workflow
path: Option<String>Path is the file path of the workflow
state: Option<String>State indicates if the workflow is active or disabled
updated_at: Option<String>§url: Option<String>URL is the API URL for this workflow
Implementations§
Source§impl ActionWorkflow
impl ActionWorkflow
Sourcepub fn new() -> ActionWorkflow
pub fn new() -> ActionWorkflow
ActionWorkflow represents a ActionWorkflow
Trait Implementations§
Source§impl Clone for ActionWorkflow
impl Clone for ActionWorkflow
Source§fn clone(&self) -> ActionWorkflow
fn clone(&self) -> ActionWorkflow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionWorkflow
impl Debug for ActionWorkflow
Source§impl Default for ActionWorkflow
impl Default for ActionWorkflow
Source§fn default() -> ActionWorkflow
fn default() -> ActionWorkflow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionWorkflow
impl<'de> Deserialize<'de> for ActionWorkflow
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 ActionWorkflow
impl PartialEq for ActionWorkflow
Source§fn eq(&self, other: &ActionWorkflow) -> bool
fn eq(&self, other: &ActionWorkflow) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActionWorkflow
impl Serialize for ActionWorkflow
impl StructuralPartialEq for ActionWorkflow
Auto Trait Implementations§
impl Freeze for ActionWorkflow
impl RefUnwindSafe for ActionWorkflow
impl Send for ActionWorkflow
impl Sync for ActionWorkflow
impl Unpin for ActionWorkflow
impl UnsafeUnpin for ActionWorkflow
impl UnwindSafe for ActionWorkflow
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