Enum winres::VersionInfo [] [src]

pub enum VersionInfo {
    FILEVERSION,
    PRODUCTVERSION,
    FILEOS,
    FILETYPE,
    FILESUBTYPE,
    FILEFLAGSMASK,
    FILEFLAGS,
}

Version info field names

Variants

The version value consists of four 16 bit words, e.g., MAJOR << 48 | MINOR << 32 | PATCH << 16 | RELEASE

The version value consists of four 16 bit words, e.g., MAJOR << 48 | MINOR << 32 | PATCH << 16 | RELEASE

Should be Windows NT Win32, with value 0x40004

The value (for a rust compiler output) should be 1 for a EXE and 2 for a DLL

Only for Windows drivers

Bit mask for FILEFLAGS

Only the bits set in FILEFLAGSMASK are read

Trait Implementations

impl PartialEq for VersionInfo
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for VersionInfo
[src]

impl Hash for VersionInfo
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for VersionInfo
[src]

Formats the value using the given formatter.