pub struct ScatterResult {
pub item: String,
pub result: ExecResult,
}Expand description
Result from a single scatter worker.
Fields§
§item: StringThe input item that was processed.
result: ExecResultThe execution result.
Trait Implementations§
Source§impl Clone for ScatterResult
impl Clone for ScatterResult
Source§fn clone(&self) -> ScatterResult
fn clone(&self) -> ScatterResult
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 ScatterResult
impl RefUnwindSafe for ScatterResult
impl Send for ScatterResult
impl Sync for ScatterResult
impl Unpin for ScatterResult
impl UnwindSafe for ScatterResult
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