Enum lief::dsc::dyld_shared_cache::Version
pub enum Version {
DYLD_95_3,
DYLD_195_5,
DYLD_239_3,
DYLD_360_14,
DYLD_421_1,
DYLD_832_7_1,
DYLD_940,
DYLD_1042_1,
UNRELEASED,
UNKNOWN(u32),
}
Expand description
This enum wraps the dyld’s git tags for which the structure of dyld shared cache evolved
Variants§
DYLD_95_3
dyld-95.3 (2007-10-30)
DYLD_195_5
dyld-195.5 (2011-07-13)
DYLD_239_3
dyld-239.3 (2013-10-29)
DYLD_360_14
dyld-360.14 (2015-09-04)
DYLD_421_1
dyld-421.1 (2016-09-22)
DYLD_832_7_1
dyld-832.7.1 (2020-11-19)
DYLD_940
dyld-940 (2021-02-09)
DYLD_1042_1
dyld-1042.1 (2022-10-19)
UNRELEASED
This value is used for versions of dyld not publicly released or not yet supported by LIEF
UNKNOWN(u32)
Trait Implementations§
impl Copy for Version
impl Eq for Version
impl StructuralEq for Version
impl StructuralPartialEq for Version
Auto Trait Implementations§
impl RefUnwindSafe for Version
impl Send for Version
impl Sync for Version
impl Unpin for Version
impl UnwindSafe for Version
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