pub struct TaskletResult {
pub exit_code: u64,
pub output: Vec<u8>,
}Expand description
Result of a completed tasklet execution.
Returned by TaskletBuilder::launch upon successful completion of a
CPU tasklet.
Fields§
§exit_code: u64Exit code of the tasklet (0 typically indicates success).
output: Vec<u8>Captured output from the tasklet, if any.
Trait Implementations§
Source§impl Clone for TaskletResult
impl Clone for TaskletResult
Source§fn clone(&self) -> TaskletResult
fn clone(&self) -> TaskletResult
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 moreAuto Trait Implementations§
impl Freeze for TaskletResult
impl RefUnwindSafe for TaskletResult
impl Send for TaskletResult
impl Sync for TaskletResult
impl Unpin for TaskletResult
impl UnwindSafe for TaskletResult
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