pub enum InitCommand {
DownloadFile(String, String, HashMap<String, String>),
UnpackCached(String),
ExtractResource(&'static str),
UserInput(String, String),
}
Variants§
DownloadFile(String, String, HashMap<String, String>)
UnpackCached(String)
Instructs to unpack an archive file from cache
§Arguments
- path in cache (use %res:
% to mension a file contained in a subfolder in the cache)
ExtractResource(&'static str)
Instructs to extract a file contained in this installer’s resources to the cache
§Arguments
- resource name/path
UserInput(String, String)
Auto Trait Implementations§
impl Freeze for InitCommand
impl RefUnwindSafe for InitCommand
impl Send for InitCommand
impl Sync for InitCommand
impl Unpin for InitCommand
impl UnwindSafe for InitCommand
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