Enum relaunch::InstallDir
source · pub enum InstallDir {
Temp,
SystemApplications,
UserApplications,
Custom(PathBuf),
}Expand description
Where to save the generated app bundle.
Variants§
Temp
Save the app bundle in a system-defined temporary directory.
SystemApplications
Save the app bundle in the system-wide Applications directory.
UserApplications
Save the app bundle in the user-specific Applications directory.
Custom(PathBuf)
Save the app bundle custom directory specified by the caller.
Auto Trait Implementations§
impl Freeze for InstallDir
impl RefUnwindSafe for InstallDir
impl Send for InstallDir
impl Sync for InstallDir
impl Unpin for InstallDir
impl UnwindSafe for InstallDir
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