ModuleCode

Enum ModuleCode 

Source
#[non_exhaustive]
#[repr(u8)]
pub enum ModuleCode {
Show 17 variants Version = 1, Triple = 2, Datalayout = 3, Asm = 4, SectionName = 5, Deplib = 6, GlobalVar = 7, Function = 8, AliasOld = 9, GCName = 11, Comdat = 12, VstOffset = 13, Alias = 14, MetadataValuesUnused = 15, SourceFilename = 16, Hash = 17, Ifunc = 18,
}
Expand description

MODULE blocks have a number of optional fields and subblocks.

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

Version = 1

VERSION

[version#]

§

Triple = 2

TRIPLE

[strchr x N]

§

Datalayout = 3

DATALAYOUT

[strchr x N]

§

Asm = 4

ASM

[strchr x N]

§

SectionName = 5

SECTIONNAME

[strchr x N]

§

Deplib = 6

Obsolete.

DEPLIB

[strchr x N]

§

GlobalVar = 7

GLOBALVAR

[pointer type, isconst, initid, linkage, alignment, section, visibility, threadlocal]

§

Function = 8

FUNCTION

[type, callingconv, isproto, linkage, paramattrs, alignment, section, visibility, gc, unnamed_addr]

§

AliasOld = 9

Obsolete alias record; replaced by MODULE_CODE_ALIAS

ALIAS

[alias type, aliasee val#, linkage, visibility]

§

GCName = 11

GCNAME

[strchr x N]

§

Comdat = 12

COMDAT

[selection_kind, name]

§

VstOffset = 13

VSTOFFSET

[offset]

§

Alias = 14

ALIAS

[alias value type, addrspace, aliasee val#, linkage, visibility]

§

MetadataValuesUnused = 15

Obsolete.

§

SourceFilename = 16

SOURCE_FILENAME

[namechar x N]

§

Hash = 17

HASH

[5*i32]

§

Ifunc = 18

IFUNC

[ifunc value type, addrspace, resolver val#, linkage, visibility]

Trait Implementations§

Source§

impl Clone for ModuleCode

Source§

fn clone(&self) -> ModuleCode

Returns a duplicate 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 ModuleCode

Source§

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

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

impl TryFrom<u8> for ModuleCode

Source§

type Error = TryFromPrimitiveError<ModuleCode>

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

fn try_from(number: u8) -> Result<Self, TryFromPrimitiveError<Self>>

Performs the conversion.
Source§

impl TryFromPrimitive for ModuleCode

Source§

impl Copy for ModuleCode

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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,

Source§

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

Source§

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

Source§

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.