pub struct PostActionsGenerateRunnerJitconfigForRepo {
pub name: Option<String>,
pub runner_group_id: Option<i64>,
pub labels: Option<Vec<String>>,
pub work_folder: Option<String>,
}Fields§
§name: Option<String>The name of the new runner.
runner_group_id: Option<i64>The ID of the runner group to register the runner to.
labels: Option<Vec<String>>The names of the custom labels to add to the runner. Minimum items: 1. Maximum items: 100.
work_folder: Option<String>The working directory to be used for job execution, relative to the runner install directory.
Trait Implementations§
Source§impl Clone for PostActionsGenerateRunnerJitconfigForRepo
impl Clone for PostActionsGenerateRunnerJitconfigForRepo
Source§fn clone(&self) -> PostActionsGenerateRunnerJitconfigForRepo
fn clone(&self) -> PostActionsGenerateRunnerJitconfigForRepo
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 Default for PostActionsGenerateRunnerJitconfigForRepo
impl Default for PostActionsGenerateRunnerJitconfigForRepo
Source§fn default() -> PostActionsGenerateRunnerJitconfigForRepo
fn default() -> PostActionsGenerateRunnerJitconfigForRepo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostActionsGenerateRunnerJitconfigForRepo
impl<'de> Deserialize<'de> for PostActionsGenerateRunnerJitconfigForRepo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PostActionsGenerateRunnerJitconfigForRepo
impl PartialEq for PostActionsGenerateRunnerJitconfigForRepo
Source§fn eq(&self, other: &PostActionsGenerateRunnerJitconfigForRepo) -> bool
fn eq(&self, other: &PostActionsGenerateRunnerJitconfigForRepo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PostActionsGenerateRunnerJitconfigForRepo
Auto Trait Implementations§
impl Freeze for PostActionsGenerateRunnerJitconfigForRepo
impl RefUnwindSafe for PostActionsGenerateRunnerJitconfigForRepo
impl Send for PostActionsGenerateRunnerJitconfigForRepo
impl Sync for PostActionsGenerateRunnerJitconfigForRepo
impl Unpin for PostActionsGenerateRunnerJitconfigForRepo
impl UnwindSafe for PostActionsGenerateRunnerJitconfigForRepo
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