Enum object::SymbolFlags
source · [−]#[non_exhaustive]
pub enum SymbolFlags<Section> {
None,
Elf {
st_info: u8,
st_other: u8,
},
MachO {
n_desc: u16,
},
CoffSection {
selection: u8,
associative_section: Option<Section>,
},
}
Expand description
Symbol flags that are specific to each file format.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
No symbol flags.
Elf
ELF symbol flags.
MachO
Fields
n_desc: u16
n_desc
field in the Mach-O symbol.
Mach-O symbol flags.
CoffSection
Fields
selection: u8
Selection
field in the auxiliary symbol for the section.
associative_section: Option<Section>
Number
field in the auxiliary symbol for the section.
COFF flags for a section symbol.
Trait Implementations
sourceimpl<Section: Clone> Clone for SymbolFlags<Section>
impl<Section: Clone> Clone for SymbolFlags<Section>
sourcefn clone(&self) -> SymbolFlags<Section>
fn clone(&self) -> SymbolFlags<Section>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<Section: Debug> Debug for SymbolFlags<Section>
impl<Section: Debug> Debug for SymbolFlags<Section>
sourceimpl<Section: Hash> Hash for SymbolFlags<Section>
impl<Section: Hash> Hash for SymbolFlags<Section>
sourceimpl<Section: PartialEq> PartialEq<SymbolFlags<Section>> for SymbolFlags<Section>
impl<Section: PartialEq> PartialEq<SymbolFlags<Section>> for SymbolFlags<Section>
sourcefn eq(&self, other: &SymbolFlags<Section>) -> bool
fn eq(&self, other: &SymbolFlags<Section>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SymbolFlags<Section>) -> bool
fn ne(&self, other: &SymbolFlags<Section>) -> bool
This method tests for !=
.
impl<Section: Copy> Copy for SymbolFlags<Section>
impl<Section: Eq> Eq for SymbolFlags<Section>
impl<Section> StructuralEq for SymbolFlags<Section>
impl<Section> StructuralPartialEq for SymbolFlags<Section>
Auto Trait Implementations
impl<Section> RefUnwindSafe for SymbolFlags<Section> where
Section: RefUnwindSafe,
impl<Section> Send for SymbolFlags<Section> where
Section: Send,
impl<Section> Sync for SymbolFlags<Section> where
Section: Sync,
impl<Section> Unpin for SymbolFlags<Section> where
Section: Unpin,
impl<Section> UnwindSafe for SymbolFlags<Section> where
Section: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more