pub enum SegmentType {
Null,
Load,
Dynamic,
Interp,
Note,
Shlib,
Phdr,
Tls,
Os(u32),
Proc(u32),
}
Variants§
Null
Load
Dynamic
Interp
Note
Shlib
Phdr
Tls
Os(u32)
A section with type 0x60000000
through 0x6fffffff
inclusive is defined to be
environment-specific.
Proc(u32)
A section with type 0x70000000
through 0x7fffffff
inclusive is defined to be
processor-specific.
Trait Implementations§
Source§impl Debug for SegmentType
impl Debug for SegmentType
Source§impl PartialEq for SegmentType
impl PartialEq for SegmentType
impl Eq for SegmentType
impl StructuralPartialEq for SegmentType
Auto Trait Implementations§
impl Freeze for SegmentType
impl RefUnwindSafe for SegmentType
impl Send for SegmentType
impl Sync for SegmentType
impl Unpin for SegmentType
impl UnwindSafe for SegmentType
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