pub trait ParallelLoopBodyTraitConst {
// Required method
fn as_raw_ParallelLoopBody(&self) -> *const c_void;
// Provided method
fn apply(&self, range: &impl RangeTraitConst) -> Result<()> { ... }
}
Expand description
Constant methods for core::ParallelLoopBody
Required Methods§
fn as_raw_ParallelLoopBody(&self) -> *const c_void
Provided Methods§
fn apply(&self, range: &impl RangeTraitConst) -> Result<()>
Object Safety§
This trait is not object safe.