pub struct ParallelReport {
pub parallelized_loops: Vec<ParallelizedLoopInfo>,
pub failed_loops: Vec<(LoopId, String)>,
}Expand description
Report of parallelization results.
Fields§
§parallelized_loops: Vec<ParallelizedLoopInfo>Loops that were parallelized.
failed_loops: Vec<(LoopId, String)>Loops that could not be parallelized.
Implementations§
Trait Implementations§
Source§impl Clone for ParallelReport
impl Clone for ParallelReport
Source§fn clone(&self) -> ParallelReport
fn clone(&self) -> ParallelReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParallelReport
impl Debug for ParallelReport
Source§impl Default for ParallelReport
impl Default for ParallelReport
Source§fn default() -> ParallelReport
fn default() -> ParallelReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParallelReport
impl RefUnwindSafe for ParallelReport
impl Send for ParallelReport
impl Sync for ParallelReport
impl Unpin for ParallelReport
impl UnsafeUnpin for ParallelReport
impl UnwindSafe for ParallelReport
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