pub enum TaskOutput {
Success(Value),
RetryableError(String),
PermanentError(String),
}Variants§
Trait Implementations§
Source§impl Clone for TaskOutput
impl Clone for TaskOutput
Source§fn clone(&self) -> TaskOutput
fn clone(&self) -> TaskOutput
Returns a duplicate of the value. Read more
1.0.0 · 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 TaskOutput
impl Debug for TaskOutput
Source§impl<'de> Deserialize<'de> for TaskOutput
impl<'de> Deserialize<'de> for TaskOutput
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 From<TaskOutput> for TaskResult
impl From<TaskOutput> for TaskResult
Source§fn from(output: TaskOutput) -> Self
fn from(output: TaskOutput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TaskOutput
impl RefUnwindSafe for TaskOutput
impl Send for TaskOutput
impl Sync for TaskOutput
impl Unpin for TaskOutput
impl UnwindSafe for TaskOutput
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