pub struct CheckOptions {Show 14 fields
pub timeout_ms: u64,
pub max_concurrent: usize,
pub follow_redirects: bool,
pub user_agent: Option<String>,
pub accept_invalid_certs: bool,
pub backoff: BackoffStrategy,
pub retries: u32,
pub proxy_list: Option<Vec<String>>,
pub test_geoblock: bool,
pub min_bytes_direct: u64,
pub min_bytes_nested: u64,
pub skip_media_probe: bool,
pub skip_screenshots: bool,
pub screenshot_dir: Option<String>,
}Expand description
Configuration for stream checking behavior.
Fields§
§timeout_ms: u64Per-stream timeout in milliseconds.
max_concurrent: usizeMaximum number of concurrent checks.
follow_redirects: boolWhether to follow HTTP redirects.
user_agent: Option<String>Custom User-Agent header value.
accept_invalid_certs: boolWhether to accept invalid/self-signed TLS certificates.
backoff: BackoffStrategyBackoff strategy for retries.
retries: u32Maximum number of retry attempts (default: 6).
proxy_list: Option<Vec<String>>Proxy list for geoblock confirmation testing.
test_geoblock: boolWhether to test geoblocked streams via proxies.
min_bytes_direct: u64Minimum bytes for direct streams at depth 0 (default: 500 KB).
min_bytes_nested: u64Minimum bytes for nested/segment streams (default: 128 KB).
skip_media_probe: boolSkip ffprobe/ffmpeg media analysis on alive streams.
skip_screenshots: boolSkip screenshot capture.
screenshot_dir: Option<String>Directory for screenshot output.
Trait Implementations§
Source§impl Clone for CheckOptions
impl Clone for CheckOptions
Source§fn clone(&self) -> CheckOptions
fn clone(&self) -> CheckOptions
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 CheckOptions
impl Debug for CheckOptions
Source§impl Default for CheckOptions
impl Default for CheckOptions
Source§impl<'de> Deserialize<'de> for CheckOptions
impl<'de> Deserialize<'de> for CheckOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CheckOptions
impl RefUnwindSafe for CheckOptions
impl Send for CheckOptions
impl Sync for CheckOptions
impl Unpin for CheckOptions
impl UnsafeUnpin for CheckOptions
impl UnwindSafe for CheckOptions
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