Struct GhConcurrencyGroup
pub struct GhConcurrencyGroup {
pub name: String,
pub cancel_in_progress: bool,
}Expand description
Settings for a Github concurrency group.
Fields§
§name: StringThe name of the concurrency group.
cancel_in_progress: boolCancel the active run when a new run joins the concurrency group.
Defaults to false.
Trait Implementations§
§impl Clone for GhConcurrencyGroup
impl Clone for GhConcurrencyGroup
§fn clone(&self) -> GhConcurrencyGroup
fn clone(&self) -> GhConcurrencyGroup
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 more§impl Debug for GhConcurrencyGroup
impl Debug for GhConcurrencyGroup
§impl Default for GhConcurrencyGroup
impl Default for GhConcurrencyGroup
§fn default() -> GhConcurrencyGroup
fn default() -> GhConcurrencyGroup
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GhConcurrencyGroup
impl RefUnwindSafe for GhConcurrencyGroup
impl Send for GhConcurrencyGroup
impl Sync for GhConcurrencyGroup
impl Unpin for GhConcurrencyGroup
impl UnsafeUnpin for GhConcurrencyGroup
impl UnwindSafe for GhConcurrencyGroup
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