pub enum Launcher {
Heroic {
config_path: PathBuf,
game_id: String,
},
Steam {
app_id: String,
},
Unknown,
}Expand description
Detected game launcher type.
Variants§
Heroic
Heroic Games Launcher — config at ~/.config/heroic/GamesConfig/<id>.json
Steam
Steam — uses launch options in Steam client
Unknown
Unknown launcher — print instructions for manual setup
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Launcher
impl RefUnwindSafe for Launcher
impl Send for Launcher
impl Sync for Launcher
impl Unpin for Launcher
impl UnsafeUnpin for Launcher
impl UnwindSafe for Launcher
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