pub struct Runner {
pub id: i64,
pub active: bool,
pub description: String,
pub ip_address: String,
pub name: String,
pub online: bool,
pub paused: bool,
pub is_shared: bool,
pub runner_type: String,
pub status: String,
}Fields§
§id: i64§active: bool§description: String§ip_address: String§name: String§online: bool§paused: bool§runner_type: String§status: StringImplementations§
Trait Implementations§
Source§impl From<GitlabRunnerFields> for Runner
impl From<GitlabRunnerFields> for Runner
Source§fn from(fields: GitlabRunnerFields) -> Self
fn from(fields: GitlabRunnerFields) -> Self
Converts to this type from the input type.
Source§impl From<Runner> for DisplayBody
impl From<Runner> for DisplayBody
Source§fn from(r: Runner) -> DisplayBody
fn from(r: Runner) -> DisplayBody
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Runner
impl RefUnwindSafe for Runner
impl Send for Runner
impl Sync for Runner
impl Unpin 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