#[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
impl Clone for ModuleCode
Source§fn clone(&self) -> ModuleCode
fn clone(&self) -> ModuleCode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ModuleCode
impl Debug for ModuleCode
Source§impl TryFrom<u8> for ModuleCode
impl TryFrom<u8> for ModuleCode
Source§type Error = TryFromPrimitiveError<ModuleCode>
type Error = TryFromPrimitiveError<ModuleCode>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for ModuleCode
impl TryFromPrimitive for ModuleCode
const NAME: &'static str = "ModuleCode"
type Primitive = u8
type Error = TryFromPrimitiveError<ModuleCode>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for ModuleCode
Auto Trait Implementations§
impl Freeze for ModuleCode
impl RefUnwindSafe for ModuleCode
impl Send for ModuleCode
impl Sync for ModuleCode
impl Unpin for ModuleCode
impl UnwindSafe for ModuleCode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more