Enum llvm_sys::lto::lto_symbol_attributes

source ·
#[repr(C)]
pub enum lto_symbol_attributes {
Show 19 variants LTO_SYMBOL_ALIGNMENT_MASK = 31, LTO_SYMBOL_PERMISSIONS_MASK = 224, LTO_SYMBOL_PERMISSIONS_CODE = 160, LTO_SYMBOL_PERMISSIONS_DATA = 192, LTO_SYMBOL_PERMISSIONS_RODATA = 128, LTO_SYMBOL_DEFINITION_MASK = 1_792, LTO_SYMBOL_DEFINITION_REGULAR = 256, LTO_SYMBOL_DEFINITION_TENTATIVE = 512, LTO_SYMBOL_DEFINITION_WEAK = 768, LTO_SYMBOL_DEFINITION_UNDEFINED = 1_024, LTO_SYMBOL_DEFINITION_WEAKUNDEF = 1_280, LTO_SYMBOL_SCOPE_MASK = 14_336, LTO_SYMBOL_SCOPE_INTERNAL = 2_048, LTO_SYMBOL_SCOPE_HIDDEN = 4_096, LTO_SYMBOL_SCOPE_PROTECTED = 8_192, LTO_SYMBOL_SCOPE_DEFAULT = 6_144, LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 10_240, LTO_SYMBOL_COMDAT = 16_384, LTO_SYMBOL_ALIAS = 32_768,
}

Variants§

§

LTO_SYMBOL_ALIGNMENT_MASK = 31

§

LTO_SYMBOL_PERMISSIONS_MASK = 224

§

LTO_SYMBOL_PERMISSIONS_CODE = 160

§

LTO_SYMBOL_PERMISSIONS_DATA = 192

§

LTO_SYMBOL_PERMISSIONS_RODATA = 128

§

LTO_SYMBOL_DEFINITION_MASK = 1_792

§

LTO_SYMBOL_DEFINITION_REGULAR = 256

§

LTO_SYMBOL_DEFINITION_TENTATIVE = 512

§

LTO_SYMBOL_DEFINITION_WEAK = 768

§

LTO_SYMBOL_DEFINITION_UNDEFINED = 1_024

§

LTO_SYMBOL_DEFINITION_WEAKUNDEF = 1_280

§

LTO_SYMBOL_SCOPE_MASK = 14_336

§

LTO_SYMBOL_SCOPE_INTERNAL = 2_048

§

LTO_SYMBOL_SCOPE_HIDDEN = 4_096

§

LTO_SYMBOL_SCOPE_PROTECTED = 8_192

§

LTO_SYMBOL_SCOPE_DEFAULT = 6_144

§

LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 10_240

§

LTO_SYMBOL_COMDAT = 16_384

Added in LLVM 3.7.

§

LTO_SYMBOL_ALIAS = 32_768

Added in LLVM 3.7.

Trait Implementations§

source§

impl Clone for lto_symbol_attributes

source§

fn clone(&self) -> lto_symbol_attributes

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for lto_symbol_attributes

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for lto_symbol_attributes

source§

fn eq(&self, other: &lto_symbol_attributes) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for lto_symbol_attributes

source§

impl StructuralPartialEq for lto_symbol_attributes

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.