pub struct ParallelCompletion {
pub member_path: Vec<usize>,
pub result: ParallelResult,
}Expand description
One successful leaf retained when another parallel member failed.
Fields§
§member_path: Vec<usize>§result: ParallelResultTrait Implementations§
Source§impl Clone for ParallelCompletion
impl Clone for ParallelCompletion
Source§fn clone(&self) -> ParallelCompletion
fn clone(&self) -> ParallelCompletion
Returns a copy 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 ParallelCompletion
impl Debug for ParallelCompletion
Source§impl PartialEq for ParallelCompletion
impl PartialEq for ParallelCompletion
impl StructuralPartialEq for ParallelCompletion
Auto Trait Implementations§
impl Freeze for ParallelCompletion
impl RefUnwindSafe for ParallelCompletion
impl Send for ParallelCompletion
impl Sync for ParallelCompletion
impl Unpin for ParallelCompletion
impl UnwindSafe for ParallelCompletion
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