#[non_exhaustive]pub struct WorkflowList {
pub include_disabled: bool,
pub limit: usize,
}Expand description
Filters for GitHubApi::workflow_list_with (gh workflow list).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.include_disabled: boolInclude disabled workflows (--all). Disabled workflows are hidden by
default by gh.
limit: usizeMaximum number of workflows (--limit).
Implementations§
Source§impl WorkflowList
impl WorkflowList
Trait Implementations§
Source§impl Clone for WorkflowList
impl Clone for WorkflowList
Source§fn clone(&self) -> WorkflowList
fn clone(&self) -> WorkflowList
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 WorkflowList
impl Debug for WorkflowList
Source§impl Default for WorkflowList
impl Default for WorkflowList
impl Eq for WorkflowList
Source§impl PartialEq for WorkflowList
impl PartialEq for WorkflowList
impl StructuralPartialEq for WorkflowList
Auto Trait Implementations§
impl Freeze for WorkflowList
impl RefUnwindSafe for WorkflowList
impl Send for WorkflowList
impl Sync for WorkflowList
impl Unpin for WorkflowList
impl UnsafeUnpin for WorkflowList
impl UnwindSafe for WorkflowList
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