pub struct ActionRunner {
pub busy: Option<bool>,
pub id: Option<f64>,
pub labels: Option<Vec<ActionRunnerLabel>>,
pub name: Option<String>,
pub status: Option<String>,
}Fields§
§busy: Option<bool>§id: Option<f64>§labels: Option<Vec<ActionRunnerLabel>>§name: Option<String>§status: Option<String>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<'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
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