Enum llvm_sys::lto::lto_symbol_attributes

source ·
#[repr(C)]
pub enum lto_symbol_attributes {
Show 17 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,
}

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

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, 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.