Struct rayon_core::registry::DefaultSpawn
source · pub struct DefaultSpawn;
Expand description
Spawns a thread in the “normal” way with std::thread::Builder
.
This type is pub-in-private – E0445 forces us to make it public, but we don’t actually want to expose these details in the API.
Trait Implementations§
source§impl Debug for DefaultSpawn
impl Debug for DefaultSpawn
source§impl Default for DefaultSpawn
impl Default for DefaultSpawn
source§fn default() -> DefaultSpawn
fn default() -> DefaultSpawn
Returns the “default value” for a type. Read more
source§impl ThreadSpawn for DefaultSpawn
impl ThreadSpawn for DefaultSpawn
Auto Trait Implementations§
impl Freeze for DefaultSpawn
impl RefUnwindSafe for DefaultSpawn
impl Send for DefaultSpawn
impl Sync for DefaultSpawn
impl Unpin for DefaultSpawn
impl UnwindSafe for DefaultSpawn
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