Enum wix::create::WixObjKind
source[−]pub enum WixObjKind {
Bundle,
Fragment,
Product,
}
Expand description
The kind of WiX Object (wixobj) file.
Variants
Bundle
A WiX Object (wixobj) file that ultimately links back to a WiX Source
(wxs) file with a bundle
tag.
Fragment
A WiX Object (wixobj) file that ultimately links back to a WiX Source
(wxs) file with a fragment
tag.
Product
A WiX Object (wixobj) file that ultimately links back to a WiX Source
(wxs) file with a product
tag.
Implementations
Determines if the WiX Object (wixobj) file kind is a bundle
.
Examples
A WiX Object (wixobj) file identified as a WXS Source (wxs) file
containing a bundle
tag.
use wix::create::WixObjKind;
assert!(WixObjKind::Bundle.is_bundle())
A WiX Object (wixobj) file identified as a WXS Source (wxs) file
containing a product
tag.
use wix::create::WixObjKind;
assert!(!WixObjKind::Product.is_bundle())