pub struct FixedExecutorParams {
pub request_config: Arc<RequestConfig>,
pub template: Option<Arc<Template>>,
pub total: usize,
pub concurrency: usize,
pub cancellation_token: CancellationToken,
}Expand description
Parameters for constructing a FixedExecutor.
Fields§
§request_config: Arc<RequestConfig>§template: Option<Arc<Template>>§total: usize§concurrency: usize§cancellation_token: CancellationTokenAuto Trait Implementations§
impl Freeze for FixedExecutorParams
impl !RefUnwindSafe for FixedExecutorParams
impl Send for FixedExecutorParams
impl Sync for FixedExecutorParams
impl Unpin for FixedExecutorParams
impl UnsafeUnpin for FixedExecutorParams
impl !UnwindSafe for FixedExecutorParams
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