pub struct AdditionalApp {
pub id: String,
pub name: String,
pub application_path: String,
pub launch_command: String,
pub auto_run_before: bool,
pub wait_for_exit: bool,
pub parent_game_id: String,
}
Fields§
§id: String
§name: String
§application_path: String
§launch_command: String
§auto_run_before: bool
§wait_for_exit: bool
§parent_game_id: String
Trait Implementations§
Source§impl Clone for AdditionalApp
impl Clone for AdditionalApp
Source§fn clone(&self) -> AdditionalApp
fn clone(&self) -> AdditionalApp
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 AdditionalApp
impl Debug for AdditionalApp
Source§impl<'de> Deserialize<'de> for AdditionalApp
impl<'de> Deserialize<'de> for AdditionalApp
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 AdditionalApp
impl RefUnwindSafe for AdditionalApp
impl Send for AdditionalApp
impl Sync for AdditionalApp
impl Unpin for AdditionalApp
impl UnwindSafe for AdditionalApp
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