#[repr(u8)]pub enum FileFlag {
Debug = 1,
Patched = 4,
Prerelease = 2,
PrivateBuild = 8,
SpecialBuild = 32,
}
Expand description
Flags that indicate the file’s status.
Variants§
Debug = 1
The file contains debugging information or is compiled with debugging features enabled.
Patched = 4
The file has been modified and is not identical to the original shipping file of the same version number.
Prerelease = 2
The file is a development version, not a commercially released product.
PrivateBuild = 8
The file was not built using standard release procedures.
If this flag is set, the VersionInfo
structure should contain a PrivateBuild entry.
SpecialBuild = 32
The file was built by the original company using standard release procedures but is a variation of the normal file of the same version number.
If this flag is set, the VersionInfo
structure should contain a SpecialBuild entry.
Trait Implementations§
Source§impl Ord for FileFlag
impl Ord for FileFlag
Source§impl PartialOrd for FileFlag
impl PartialOrd for FileFlag
impl Copy for FileFlag
impl Eq for FileFlag
impl StructuralPartialEq for FileFlag
Auto Trait Implementations§
impl Freeze for FileFlag
impl RefUnwindSafe for FileFlag
impl Send for FileFlag
impl Sync for FileFlag
impl Unpin for FileFlag
impl UnwindSafe for FileFlag
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