pub enum LaunchCommand {
Url(Url),
Bin {
path: PathBuf,
args: Vec<BinArg>,
},
Steam(u32),
}
Variants§
Implementations§
Source§impl LaunchCommand
impl LaunchCommand
Auto Trait Implementations§
impl Freeze for LaunchCommand
impl RefUnwindSafe for LaunchCommand
impl Send for LaunchCommand
impl Sync for LaunchCommand
impl Unpin for LaunchCommand
impl UnwindSafe for LaunchCommand
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