pub struct Runner {
pub id: String,
pub description: String,
pub status: String,
pub paused: bool,
pub ip_address: String,
pub os: String,
pub tags: Vec<String>,
pub version: String,
pub runner_type: String,
pub web_url: String,
}Fields§
§id: StringPlatform-native ID (GitLab numeric; GitHub numeric).
description: String§status: StringNormalized: online | offline | paused | active | stale | other
paused: bool§ip_address: String§os: String§version: String§runner_type: StringGitLab: instance_type | group_type | project_type. GitHub: “self-hosted”.
web_url: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Runner
impl<'de> Deserialize<'de> for Runner
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
Auto Trait Implementations§
impl Freeze for Runner
impl RefUnwindSafe for Runner
impl Send for Runner
impl Sync for Runner
impl Unpin for Runner
impl UnsafeUnpin for Runner
impl UnwindSafe for Runner
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