pub struct InstallerOptions {
pub runtime_root: Option<PathBuf>,
pub proxy_url: Option<String>,
}Expand description
Runtime installer configuration resolved by the application layer.
Fields§
§runtime_root: Option<PathBuf>Alternative runtime root directory.
proxy_url: Option<String>Optional explicit proxy URL for outbound downloads.
Trait Implementations§
Source§impl Clone for InstallerOptions
impl Clone for InstallerOptions
Source§fn clone(&self) -> InstallerOptions
fn clone(&self) -> InstallerOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InstallerOptions
impl Debug for InstallerOptions
Source§impl Default for InstallerOptions
impl Default for InstallerOptions
Source§fn default() -> InstallerOptions
fn default() -> InstallerOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InstallerOptions
impl RefUnwindSafe for InstallerOptions
impl Send for InstallerOptions
impl Sync for InstallerOptions
impl Unpin for InstallerOptions
impl UnsafeUnpin for InstallerOptions
impl UnwindSafe for InstallerOptions
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