pub struct ActionTaskResponse {
pub total_count: Option<i64>,
pub workflow_runs: Option<Vec<ActionTask>>,
}Expand description
ActionTaskResponse : ActionTaskResponse returns a ActionTask
Fields§
§total_count: Option<i64>TotalCount is the total number of workflow runs
workflow_runs: Option<Vec<ActionTask>>Entries contains the list of workflow runs
Implementations§
Source§impl ActionTaskResponse
impl ActionTaskResponse
Sourcepub fn new() -> ActionTaskResponse
pub fn new() -> ActionTaskResponse
ActionTaskResponse returns a ActionTask
Trait Implementations§
Source§impl Clone for ActionTaskResponse
impl Clone for ActionTaskResponse
Source§fn clone(&self) -> ActionTaskResponse
fn clone(&self) -> ActionTaskResponse
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 ActionTaskResponse
impl Debug for ActionTaskResponse
Source§impl Default for ActionTaskResponse
impl Default for ActionTaskResponse
Source§fn default() -> ActionTaskResponse
fn default() -> ActionTaskResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionTaskResponse
impl<'de> Deserialize<'de> for ActionTaskResponse
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 ActionTaskResponse
impl PartialEq for ActionTaskResponse
Source§fn eq(&self, other: &ActionTaskResponse) -> bool
fn eq(&self, other: &ActionTaskResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActionTaskResponse
impl Serialize for ActionTaskResponse
impl StructuralPartialEq for ActionTaskResponse
Auto Trait Implementations§
impl Freeze for ActionTaskResponse
impl RefUnwindSafe for ActionTaskResponse
impl Send for ActionTaskResponse
impl Sync for ActionTaskResponse
impl Unpin for ActionTaskResponse
impl UnsafeUnpin for ActionTaskResponse
impl UnwindSafe for ActionTaskResponse
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