pub struct ItemProcessorConfig {
pub max_concurrent: usize,
}Expand description
Configuration for the item processor.
This struct holds settings specific to the item processing pipeline.
Fields§
§max_concurrent: usizeThe maximum number of concurrent pipeline processors.
Implementations§
Source§impl ItemProcessorConfig
impl ItemProcessorConfig
Sourcepub fn with_max_concurrent(self, limit: usize) -> Self
pub fn with_max_concurrent(self, limit: usize) -> Self
Sets the maximum number of concurrent processors.
Trait Implementations§
Source§impl Clone for ItemProcessorConfig
impl Clone for ItemProcessorConfig
Source§fn clone(&self) -> ItemProcessorConfig
fn clone(&self) -> ItemProcessorConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ItemProcessorConfig
impl Debug for ItemProcessorConfig
Auto Trait Implementations§
impl Freeze for ItemProcessorConfig
impl RefUnwindSafe for ItemProcessorConfig
impl Send for ItemProcessorConfig
impl Sync for ItemProcessorConfig
impl Unpin for ItemProcessorConfig
impl UnsafeUnpin for ItemProcessorConfig
impl UnwindSafe for ItemProcessorConfig
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