Struct tugger_wix::ExePackage[][src]

pub struct ExePackage<'a> {
    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>,
}

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

impl<'a> ExePackage<'a>[src]

pub fn write_xml<W: Write>(&self, writer: &mut EventWriter<W>) -> Result<()>[src]

Trait Implementations

impl<'a> Clone for ExePackage<'a>[src]

impl<'a> Debug for ExePackage<'a>[src]

impl<'a> Default for ExePackage<'a>[src]

impl<'a> From<ExePackage<'a>> for ChainElement<'a>[src]

Auto Trait Implementations

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,