Skip to main content

ConcurrencyConfig

Struct ConcurrencyConfig 

Source
pub struct ConcurrencyConfig { /* private fields */ }
Expand description

Concurrency configuration with smart auto-detection

Provides intelligent defaults based on hardware capabilities:

  • Auto-detection: Uses std::thread::available_parallelism() to detect CPU cores
  • HDD-aware: Limits concurrency on systems with limited I/O
  • Safe bounds: Clamps values between 1 and 16

§Examples

use rust_scraper::ConcurrencyConfig;

// Auto-detect (default)
let config = ConcurrencyConfig::default();

// Explicit value
let config = ConcurrencyConfig::new(5);

// Get the resolved value
let concurrency = config.resolve();
println!("Using {} concurrent workers", concurrency);

Implementations§

Source§

impl ConcurrencyConfig

Source

pub fn new(value: usize) -> Self

Create a new config with explicit value

§Arguments
  • value - Explicit concurrency value (will be clamped 1-16)
§Examples
use rust_scraper::ConcurrencyConfig;

let config = ConcurrencyConfig::new(5);
assert_eq!(config.resolve(), 5);
Source

pub fn auto() -> Self

Create auto-detecting config (default)

§Examples
use rust_scraper::ConcurrencyConfig;

let config = ConcurrencyConfig::auto();
let concurrency = config.resolve();
assert!(concurrency >= 1);
Source

pub fn resolve(&self) -> usize

Resolve the actual concurrency value

Uses auto-detection based on CPU cores:

  • 1-2 cores: 1 (avoid overwhelming system)
  • 4 cores: 3 (HDD-aware default)
  • 8+ cores: min(cores - 1, 8)
§Returns

Concurrency value between 1 and 16

§Examples
use rust_scraper::ConcurrencyConfig;

// Explicit value
let config = ConcurrencyConfig::new(5);
assert_eq!(config.resolve(), 5);

// Auto-detect
let config = ConcurrencyConfig::auto();
let value = config.resolve();
assert!(value >= 1 && value <= 16);
Source

pub fn is_auto(&self) -> bool

Check if this config uses auto-detection

§Examples
use rust_scraper::ConcurrencyConfig;

let auto = ConcurrencyConfig::auto();
assert!(auto.is_auto());

let explicit = ConcurrencyConfig::new(5);
assert!(!explicit.is_auto());
Source

pub fn get(&self) -> Option<usize>

Get the raw value if explicitly set

Trait Implementations§

Source§

impl Clone for ConcurrencyConfig

Source§

fn clone(&self) -> ConcurrencyConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ConcurrencyConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ConcurrencyConfig

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Display for ConcurrencyConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<&str> for ConcurrencyConfig

Custom value parser for clap (accepts “auto” or number)

Source§

fn from(s: &str) -> Self

Converts to this type from the input type.
Source§

impl FromStr for ConcurrencyConfig

Source§

type Err = ParseIntError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl ValueParserFactory for ConcurrencyConfig

Source§

type Parser = ConcurrencyValueParser

Generated parser, usually ValueParser. Read more
Source§

fn value_parser() -> Self::Parser

Create the specified Self::Parser

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToCompactString for T
where T: Display,

Source§

impl<T> ToLine for T
where T: Display,

Source§

fn to_line(&self) -> Line<'_>

Converts the value to a Line.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToSpan for T
where T: Display,

Source§

fn to_span(&self) -> Span<'_>

Converts the value to a Span.
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T> ToStringFallible for T
where T: Display,

Source§

fn try_to_string(&self) -> Result<String, TryReserveError>

ToString::to_string, but without panic on OOM.

Source§

impl<T> ToText for T
where T: Display,

Source§

fn to_text(&self) -> Text<'_>

Converts the value to a Text.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more