Enum pueue_lib::task::TaskResult [−][src]
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]
fn clone(&self) -> TaskResult[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for TaskResult[src]
impl<'de> Deserialize<'de> for TaskResult[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Display for TaskResult[src]
impl PartialEq<TaskResult> for TaskResult[src]
fn eq(&self, other: &TaskResult) -> bool[src]
fn ne(&self, other: &TaskResult) -> bool[src]
impl Serialize for TaskResult[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for TaskResult[src]
Auto Trait Implementations
impl RefUnwindSafe for TaskResult[src]
impl Send for TaskResult[src]
impl Sync for TaskResult[src]
impl Unpin for TaskResult[src]
impl UnwindSafe for TaskResult[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,