pub struct ActionRunner {
pub description: Option<String>,
pub ephemeral: Option<bool>,
pub id: Option<i64>,
pub labels: Option<Vec<String>>,
pub name: Option<String>,
pub owner_id: Option<i64>,
pub repo_id: Option<i64>,
pub status: Option<ActionRunnerStatus>,
pub uuid: Option<String>,
pub version: Option<String>,
}Expand description
ActionRunner represents a runner
Fields§
§description: Option<String>Description provides optional details about this runner.
ephemeral: Option<bool>Indicates if runner is ephemeral runner
id: Option<i64>ID uniquely identifies this runner.
labels: Option<Vec<String>>Labels is a list of labels attached to this runner.
name: Option<String>Name of the runner; not unique.
owner_id: Option<i64>OwnerID is the identifier of the user or organization this runner belongs to. O if the runner is owned by a
repository.
repo_id: Option<i64>RepoID is the identifier of the repository this runner belongs to. 0 if the runner belongs to a user or
organization.
status: Option<ActionRunnerStatus>Status indicates whether this runner is offline, or active, for example.
uuid: Option<String>UUID uniquely identifies this runner.
version: Option<String>Version is the self-reported version string of Forgejo Runner.
Trait Implementations§
Source§impl Clone for ActionRunner
impl Clone for ActionRunner
Source§fn clone(&self) -> ActionRunner
fn clone(&self) -> ActionRunner
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 ActionRunner
impl Debug for ActionRunner
Source§impl<'de> Deserialize<'de> for ActionRunner
impl<'de> Deserialize<'de> for ActionRunner
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 FromResponse for ActionRunner
impl FromResponse for ActionRunner
fn from_response( response: ApiResponse, has_body: bool, ) -> Result<Self, StructureError>
Source§impl PartialEq for ActionRunner
impl PartialEq for ActionRunner
Source§impl Serialize for ActionRunner
impl Serialize for ActionRunner
impl StructuralPartialEq for ActionRunner
Auto Trait Implementations§
impl Freeze for ActionRunner
impl RefUnwindSafe for ActionRunner
impl Send for ActionRunner
impl Sync for ActionRunner
impl Unpin for ActionRunner
impl UnsafeUnpin for ActionRunner
impl UnwindSafe for ActionRunner
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