pub struct SharedTaskletResult {
pub exit_code: u64,
pub output: Vec<u8>,
}Expand description
Result of a completed shared-memory tasklet.
Fields§
§exit_code: u64Exit code (0 = success).
output: Vec<u8>Output bytes emitted by the coordinator.
Trait Implementations§
Source§fn clone(&self) -> SharedTaskletResult
fn clone(&self) -> SharedTaskletResult
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§
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