pub enum LaunchMethod {
AlternativeExecutable {
executable_path: PathBuf,
},
ManifestAction {
manifest_action_name: String,
},
Heuristics {
game_platform: GamePlatform,
game_title: String,
},
}Variants§
Auto Trait Implementations§
impl Freeze for LaunchMethod
impl RefUnwindSafe for LaunchMethod
impl Send for LaunchMethod
impl Sync for LaunchMethod
impl Unpin for LaunchMethod
impl UnwindSafe for LaunchMethod
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