Enum pueue_lib::task::TaskResult [−][src]
pub enum TaskResult {
Success,
Failed(i32),
FailedToSpawn(String),
Killed,
Errored,
DependencyFailed,
}Expand description
This enum represents the exit status of an actually spawned program. It’s only used, once a task finished or failed in some kind of way.
Variants
Task exited with 0
Failed(i32)The task failed in some other kind of way (error code != 0)
FailedToSpawn(String)The task couldn’t be spawned. Probably a typo in the command
Task has been actively killed by either the user or the daemon on shutdown
Some kind of IO error. This should barely ever happen. Please check the daemon logs.
A dependency of the task failed.
Trait Implementations
impl Clone for TaskResult[src]
impl Clone for TaskResult[src]fn clone(&self) -> TaskResult[src]
fn clone(&self) -> TaskResult[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for TaskResult[src]
impl Debug for TaskResult[src]impl<'de> Deserialize<'de> for TaskResult[src]
impl<'de> Deserialize<'de> for TaskResult[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl Display for TaskResult[src]
impl Display for TaskResult[src]impl PartialEq<TaskResult> for TaskResult[src]
impl PartialEq<TaskResult> for TaskResult[src]fn eq(&self, other: &TaskResult) -> bool[src]
fn eq(&self, other: &TaskResult) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &TaskResult) -> bool[src]
fn ne(&self, other: &TaskResult) -> bool[src]This method tests for !=.
impl Serialize for TaskResult[src]
impl Serialize for TaskResult[src]impl StructuralPartialEq for TaskResult[src]
Auto Trait Implementations
impl RefUnwindSafe for TaskResult
impl Send for TaskResult
impl Sync for TaskResult
impl Unpin for TaskResult
impl UnwindSafe for TaskResult
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>, pub fn vzip(self) -> V
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,