pub struct ActionTask {Show 13 fields
pub created_at: Option<OffsetDateTime>,
pub display_title: Option<String>,
pub event: Option<String>,
pub head_branch: Option<String>,
pub head_sha: Option<String>,
pub id: Option<i64>,
pub name: Option<String>,
pub run_number: Option<i64>,
pub run_started_at: Option<OffsetDateTime>,
pub status: Option<String>,
pub updated_at: Option<OffsetDateTime>,
pub url: Option<Url>,
pub workflow_id: Option<String>,
}Expand description
ActionTask represents a ActionTask
Fields§
§created_at: Option<OffsetDateTime>§display_title: Option<String>§event: Option<String>§head_branch: Option<String>§head_sha: Option<String>§id: Option<i64>§name: Option<String>§run_number: Option<i64>§run_started_at: Option<OffsetDateTime>§status: Option<String>§updated_at: Option<OffsetDateTime>§url: Option<Url>§workflow_id: Option<String>Trait Implementations§
Source§impl Clone for ActionTask
impl Clone for ActionTask
Source§fn clone(&self) -> ActionTask
fn clone(&self) -> ActionTask
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 ActionTask
impl Debug for ActionTask
Source§impl<'de> Deserialize<'de> for ActionTask
impl<'de> Deserialize<'de> for ActionTask
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 ActionTask
impl PartialEq for ActionTask
Source§impl Serialize for ActionTask
impl Serialize for ActionTask
impl StructuralPartialEq for ActionTask
Auto Trait Implementations§
impl Freeze for ActionTask
impl RefUnwindSafe for ActionTask
impl Send for ActionTask
impl Sync for ActionTask
impl Unpin for ActionTask
impl UnwindSafe for ActionTask
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