Enum gitlab::api::groups::SharedRunnersSetting
source · #[non_exhaustive]pub enum SharedRunnersSetting {
Enabled,
DisabledWithOverride,
DisableAndUnoverridable,
}Expand description
Access levels for creating a project within a group.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Enabled
All projects and subgroups can use shared runners.
DisabledWithOverride
Shared runners are not allowed, but subgroups can enable.
DisableAndUnoverridable
Shared runners are not allowed for this group and all subgroups.
Trait Implementations§
source§fn clone(&self) -> SharedRunnersSetting
fn clone(&self) -> SharedRunnersSetting
Returns a copy 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§fn eq(&self, other: &SharedRunnersSetting) -> bool
fn eq(&self, other: &SharedRunnersSetting) -> bool
This method tests for
self and other values to be equal, and is used
by ==.Auto Trait Implementations§
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.