Enum object::SymbolFlags 
source · [−]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
None
No symbol flags.
Elf
ELF symbol flags.
MachO
Fields
n_desc: u16n_desc field in the Mach-O symbol.
Mach-O symbol flags.
CoffSection
Fields
selection: u8Selection 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: 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 · sourcepub fn borrow_mut(&mut self) -> &mut T
 
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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.
sourcepub fn to_owned(&self) -> T
 
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
 
pub 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