pub struct ThreadPool { /* private fields */ }
Implementations§
Source§impl ThreadPool
impl ThreadPool
pub fn async_execute<F>(&self, job: F) -> SendResultwhere
F: AsyncRecoverableFunction,
pub fn async_execute_with_catch<F, E>(
&self,
job: F,
handle_error: E,
) -> SendResultwhere
F: AsyncRecoverableFunction,
E: AsyncErrorHandlerFunction,
pub fn async_execute_with_catch_finally<F, E, L>( &self, job: F, handle_error: E, finally: L, ) -> SendResult
Source§impl ThreadPool
impl ThreadPool
pub fn new(size: usize) -> ThreadPool
pub fn execute<F>(&self, job: F) -> SendResultwhere
F: RecoverableFunction,
pub fn execute_with_catch<F, E>(&self, job: F, handle_error: E) -> SendResultwhere
F: RecoverableFunction,
E: ErrorHandlerFunction,
pub fn execute_with_catch_finally<F, E, L>( &self, job: F, handle_error: E, finally: L, ) -> SendResult
Auto Trait Implementations§
impl Freeze for ThreadPool
impl RefUnwindSafe for ThreadPool
impl Send for ThreadPool
impl Sync for ThreadPool
impl Unpin for ThreadPool
impl UnwindSafe for ThreadPool
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