Struct comfy_wgpu::rayon::ThreadBuilder
pub struct ThreadBuilder { /* private fields */ }Expand description
Thread builder used for customization via
ThreadPoolBuilder::spawn_handler.
Implementations§
§impl ThreadBuilder
impl ThreadBuilder
pub fn stack_size(&self) -> Option<usize>
pub fn stack_size(&self) -> Option<usize>
Gets the value that was specified by ThreadPoolBuilder::stack_size().
pub fn run(self)
pub fn run(self)
Executes the main loop for this thread. This will not return until the thread pool is dropped.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for ThreadBuilder
impl Send for ThreadBuilder
impl !Sync for ThreadBuilder
impl Unpin for ThreadBuilder
impl !UnwindSafe for ThreadBuilder
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