pub struct SimPackage {
pub name: String,
pub project_xml: String,
pub output_dir: Option<String>,
pub temp_dir: Option<String>,
pub marketplace_dir: Option<String>,
pub force_rebuild: bool,
pub mirror_output: bool,
pub prefer_steam: bool,
}Expand description
One MSFS project file fed to fspackagetool.exe.
Fields§
§name: String§project_xml: String§output_dir: Option<String>§temp_dir: Option<String>§marketplace_dir: Option<String>§force_rebuild: bool§mirror_output: bool§prefer_steam: boolTrait Implementations§
Source§impl Clone for SimPackage
impl Clone for SimPackage
Source§fn clone(&self) -> SimPackage
fn clone(&self) -> SimPackage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SimPackage
impl Debug for SimPackage
Source§impl<'de> Deserialize<'de> for SimPackage
impl<'de> Deserialize<'de> for SimPackage
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 SimPackage
impl RefUnwindSafe for SimPackage
impl Send for SimPackage
impl Sync for SimPackage
impl Unpin for SimPackage
impl UnsafeUnpin for SimPackage
impl UnwindSafe for SimPackage
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