pub enum Executor {
Executor {
current_executable: Option<ShortBuild>,
likely_stuck: bool,
number: u32,
progress: ExecutorProgress,
},
MissingData {},
}
Expand description
An Executor
of a Computer
Variants§
Executor
An Executor
of a Computer
Fields
§
current_executable: Option<ShortBuild>
Build
that is currently running. Will be None if the executor
is idle, or if it is building a job the current user doesn’t have
permissions to see
§
progress: ExecutorProgress
Progress in current executable
MissingData
No data was retrieved about current executor, probably due to not enough depth in request
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Executor
impl<'de> Deserialize<'de> for Executor
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 Executor
impl RefUnwindSafe for Executor
impl Send for Executor
impl Sync for Executor
impl Unpin for Executor
impl UnwindSafe for Executor
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