pub enum GhRunner {
GhHosted(GhRunnerOsLabel),
SelfHosted(Vec<String>),
RunnerGroup {
group: String,
labels: Vec<String>,
},
}
Expand description
GitHub runner type
Variants§
Implementations§
Trait Implementations§
impl StructuralPartialEq for GhRunner
Auto Trait Implementations§
impl Freeze for GhRunner
impl RefUnwindSafe for GhRunner
impl Send for GhRunner
impl Sync for GhRunner
impl Unpin for GhRunner
impl UnwindSafe for GhRunner
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