pub struct Config {
pub base_url: Url,
pub runs: usize,
pub concurrency: usize,
pub insecure: bool,
pub paths: Option<Vec<String>>,
pub progress: Option<ProgressCallback>,
}Fields§
§base_url: Url§runs: usize§concurrency: usize§insecure: bool§paths: Option<Vec<String>>None triggers asset discovery from /index.html.
progress: Option<ProgressCallback>Optional sink for ProgressEvents. None disables progress reporting.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl !RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl !UnwindSafe for Config
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