pub struct WorkRange {
pub start: usize,
pub end: usize,
}Expand description
Work range for parallel iteration.
Fields§
§start: usizeStart index (inclusive).
end: usizeEnd index (exclusive).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WorkRange
impl RefUnwindSafe for WorkRange
impl Send for WorkRange
impl Sync for WorkRange
impl Unpin for WorkRange
impl UnwindSafe for WorkRange
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