pub struct TaskOutput { /* private fields */ }Expand description
Task execution output
§Examples
use reinhardt_tasks::{TaskOutput, TaskId};
let output = TaskOutput::new(TaskId::new(), "Processing completed".to_string());
assert_eq!(output.result(), "Processing completed");Implementations§
Source§impl TaskOutput
impl TaskOutput
Sourcepub fn new(task_id: TaskId, result: String) -> Self
pub fn new(task_id: TaskId, result: String) -> Self
Create a new task output
§Examples
use reinhardt_tasks::{TaskOutput, TaskId};
let task_id = TaskId::new();
let output = TaskOutput::new(task_id, "Success".to_string());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
Auto Trait Implementations§
impl Freeze for TaskOutput
impl RefUnwindSafe for TaskOutput
impl Send for TaskOutput
impl Sync for TaskOutput
impl Unpin for TaskOutput
impl UnsafeUnpin 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