pub struct RegisterRunnerOptions {
pub description: Option<String>,
pub ephemeral: Option<bool>,
pub name: String,
}Fields§
§description: Option<String>Description of the runner to register.
ephemeral: Option<bool>Register as ephemeral runner https://forgejo.org/docs/latest/admin/actions/security/#ephemeral-runner
name: StringName of the runner to register. The name of the runner does not have to be unique.
Trait Implementations§
Source§impl Clone for RegisterRunnerOptions
impl Clone for RegisterRunnerOptions
Source§fn clone(&self) -> RegisterRunnerOptions
fn clone(&self) -> RegisterRunnerOptions
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 Debug for RegisterRunnerOptions
impl Debug for RegisterRunnerOptions
Source§impl<'de> Deserialize<'de> for RegisterRunnerOptions
impl<'de> Deserialize<'de> for RegisterRunnerOptions
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 RegisterRunnerOptions
impl PartialEq for RegisterRunnerOptions
Source§impl Serialize for RegisterRunnerOptions
impl Serialize for RegisterRunnerOptions
impl StructuralPartialEq for RegisterRunnerOptions
Auto Trait Implementations§
impl Freeze for RegisterRunnerOptions
impl RefUnwindSafe for RegisterRunnerOptions
impl Send for RegisterRunnerOptions
impl Sync for RegisterRunnerOptions
impl Unpin for RegisterRunnerOptions
impl UnsafeUnpin for RegisterRunnerOptions
impl UnwindSafe for RegisterRunnerOptions
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