pub struct ListActionRunsQuery {
pub event: Option<Vec<String>>,
pub status: Option<Vec<ListActionRunsQueryStatus>>,
pub run_number: Option<i64>,
pub head_sha: Option<String>,
}Fields§
§event: Option<Vec<String>>Returns workflow run triggered by the specified events. For example, push, pull_request or workflow_dispatch.
status: Option<Vec<ListActionRunsQueryStatus>>Returns workflow runs with the check run status or conclusion that is specified. For example, a conclusion can be success or a status can be in_progress. Only Forgejo Actions can set a status of waiting, pending, or requested.
run_number: Option<i64>Returns the workflow run associated with the run number.
head_sha: Option<String>Only returns workflow runs that are associated with the specified head_sha.
Trait Implementations§
Source§impl Clone for ListActionRunsQuery
impl Clone for ListActionRunsQuery
Source§fn clone(&self) -> ListActionRunsQuery
fn clone(&self) -> ListActionRunsQuery
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 ListActionRunsQuery
impl Debug for ListActionRunsQuery
Source§impl Default for ListActionRunsQuery
impl Default for ListActionRunsQuery
Source§fn default() -> ListActionRunsQuery
fn default() -> ListActionRunsQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListActionRunsQuery
impl PartialEq for ListActionRunsQuery
impl StructuralPartialEq for ListActionRunsQuery
Auto Trait Implementations§
impl Freeze for ListActionRunsQuery
impl RefUnwindSafe for ListActionRunsQuery
impl Send for ListActionRunsQuery
impl Sync for ListActionRunsQuery
impl Unpin for ListActionRunsQuery
impl UnwindSafe for ListActionRunsQuery
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