pub enum IndexType {
None,
SysV,
Windows,
BSD,
}
Expand description
The type of symbol index can be present in an archive. Can serve as an indication of the archive format.
Variants§
None
No symbol index present.
SysV
SystemV/GNU style symbol index, used on Windows as well.
Windows
Windows specific extension of SysV symbol index, so called Second Linker Member. Has the same member name as SysV symbol index but different structure.
BSD
BSD style symbol index.
Trait Implementations§
source§impl PartialEq for IndexType
impl PartialEq for IndexType
impl StructuralPartialEq for IndexType
Auto Trait Implementations§
impl RefUnwindSafe for IndexType
impl Send for IndexType
impl Sync for IndexType
impl Unpin for IndexType
impl UnwindSafe for IndexType
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