pub struct ExePackage<'a> {Show 14 fields
pub id: Option<Cow<'a, str>>,
pub name: Option<Cow<'a, str>>,
pub source_file: Option<Cow<'a, str>>,
pub display_name: Option<Cow<'a, str>>,
pub cache: Option<Cow<'a, str>>,
pub compressed: Option<Cow<'a, str>>,
pub per_machine: Option<Cow<'a, str>>,
pub permanent: Option<Cow<'a, str>>,
pub install_condition: Option<Cow<'a, str>>,
pub detect_condition: Option<Cow<'a, str>>,
pub install_command: Option<Cow<'a, str>>,
pub repair_command: Option<Cow<'a, str>>,
pub uninstall_command: Option<Cow<'a, str>>,
pub exit_codes: Vec<ExitCode>,
}
Expand description
Represents the <ExePackage>
WiX XML element.
Fields§
§id: Option<Cow<'a, str>>
§name: Option<Cow<'a, str>>
§source_file: Option<Cow<'a, str>>
§display_name: Option<Cow<'a, str>>
§cache: Option<Cow<'a, str>>
§compressed: Option<Cow<'a, str>>
§per_machine: Option<Cow<'a, str>>
§permanent: Option<Cow<'a, str>>
§install_condition: Option<Cow<'a, str>>
§detect_condition: Option<Cow<'a, str>>
§install_command: Option<Cow<'a, str>>
§repair_command: Option<Cow<'a, str>>
§uninstall_command: Option<Cow<'a, str>>
§exit_codes: Vec<ExitCode>
Implementations§
Source§impl<'a> ExePackage<'a>
impl<'a> ExePackage<'a>
Trait Implementations§
Source§impl<'a> Clone for ExePackage<'a>
impl<'a> Clone for ExePackage<'a>
Source§fn clone(&self) -> ExePackage<'a>
fn clone(&self) -> ExePackage<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for ExePackage<'a>
impl<'a> Debug for ExePackage<'a>
Source§impl<'a> Default for ExePackage<'a>
impl<'a> Default for ExePackage<'a>
Source§fn default() -> ExePackage<'a>
fn default() -> ExePackage<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> From<ExePackage<'a>> for ChainElement<'a>
impl<'a> From<ExePackage<'a>> for ChainElement<'a>
Source§fn from(exe: ExePackage<'a>) -> Self
fn from(exe: ExePackage<'a>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for ExePackage<'a>
impl<'a> RefUnwindSafe for ExePackage<'a>
impl<'a> Send for ExePackage<'a>
impl<'a> Sync for ExePackage<'a>
impl<'a> Unpin for ExePackage<'a>
impl<'a> UnwindSafe for ExePackage<'a>
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