pub struct Config {
pub url: String,
pub url_from_default: bool,
pub out: Option<PathBuf>,
pub outline_out: Option<PathBuf>,
pub reduce: Vec<ReduceKey>,
pub profile: OutputProfile,
pub minify: bool,
pub timeout_ms: u64,
pub headers: Vec<String>,
pub stdout: bool,
}Fields§
§url: String§url_from_default: bool§out: Option<PathBuf>§outline_out: Option<PathBuf>§reduce: Vec<ReduceKey>§profile: OutputProfile§minify: bool§timeout_ms: u64§headers: Vec<String>§stdout: boolImplementations§
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 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