pub enum FormatVersion {
WindowsXp2003,
WindowsVista7,
Windows8,
Windows10,
}
Expand description
Format versions for a Prefetch file.
Variants§
WindowsXp2003
Windows XP and Windows 2003 (code 0x11)
WindowsVista7
Windows Vista and Windows 7 (code 0x17)
Windows8
Windows 8 and Windows 8.1 (code 0x1a)
Windows10
Windows 10 (code 0x1e) (not fully supported yet)
Trait Implementations§
Source§impl Clone for FormatVersion
impl Clone for FormatVersion
Source§fn clone(&self) -> FormatVersion
fn clone(&self) -> FormatVersion
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FormatVersion
impl Debug for FormatVersion
Source§impl Display for FormatVersion
impl Display for FormatVersion
impl Copy for FormatVersion
Auto Trait Implementations§
impl Freeze for FormatVersion
impl RefUnwindSafe for FormatVersion
impl Send for FormatVersion
impl Sync for FormatVersion
impl Unpin for FormatVersion
impl UnwindSafe for FormatVersion
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