pub struct RemoteAddApp {
pub name: String,
pub application_path: String,
pub launch_command: String,
pub wait_for_exit: bool,
pub auto_run_before: bool,
pub parent_game_id: String,
}
Fields§
§name: String
§application_path: String
§launch_command: String
§wait_for_exit: bool
§auto_run_before: bool
§parent_game_id: String
Trait Implementations§
Source§impl Clone for RemoteAddApp
impl Clone for RemoteAddApp
Source§fn clone(&self) -> RemoteAddApp
fn clone(&self) -> RemoteAddApp
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RemoteAddApp
impl Debug for RemoteAddApp
Source§impl<'de> Deserialize<'de> for RemoteAddApp
impl<'de> Deserialize<'de> for RemoteAddApp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RemoteAddApp
impl RefUnwindSafe for RemoteAddApp
impl Send for RemoteAddApp
impl Sync for RemoteAddApp
impl Unpin for RemoteAddApp
impl UnwindSafe for RemoteAddApp
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