pub struct ActionRunner {
pub busy: Option<bool>,
pub ephemeral: Option<bool>,
pub id: Option<i64>,
pub labels: Option<Vec<ActionRunnerLabel>>,
pub name: Option<String>,
pub status: Option<String>,
}Expand description
ActionRunner : ActionRunner represents a Runner
Fields§
§busy: Option<bool>§ephemeral: Option<bool>§id: Option<i64>§labels: Option<Vec<ActionRunnerLabel>>§name: Option<String>§status: Option<String>Implementations§
Source§impl ActionRunner
impl ActionRunner
Sourcepub fn new() -> ActionRunner
pub fn new() -> ActionRunner
ActionRunner represents a 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 (const: unstable) · 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 Default for ActionRunner
impl Default for ActionRunner
Source§fn default() -> ActionRunner
fn default() -> ActionRunner
Returns the “default value” for a type. Read more
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 PartialEq for ActionRunner
impl PartialEq for ActionRunner
Source§fn eq(&self, other: &ActionRunner) -> bool
fn eq(&self, other: &ActionRunner) -> bool
Tests for
self and other values to be equal, and is used by ==.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