Enum inkwell::debug_info::DWARFSourceLanguage
source · pub enum DWARFSourceLanguage {
Show 50 variants
C89,
C,
Ada83,
CPlusPlus,
Cobol74,
Cobol85,
Fortran77,
Fortran90,
Pascal83,
Modula2,
Java,
C99,
Ada95,
Fortran95,
PLI,
ObjC,
ObjCPlusPlus,
UPC,
D,
Python,
OpenCL,
Go,
Modula3,
Haskell,
CPlusPlus03,
CPlusPlus11,
OCaml,
Rust,
C11,
Swift,
Julia,
Dylan,
CPlusPlus14,
Fortran03,
Fortran08,
RenderScript,
BLISS,
MipsAssembler,
GOOGLERenderScript,
BORLANDDelphi,
Kotlin,
Zig,
Crystal,
CPlusPlus17,
CPlusPlus20,
C17,
Fortran18,
Ada2005,
Ada2012,
Mojo,
}
Expand description
Source languages known by DWARF. Corresponds to LLVMDWARFSourceLanguage
enum from LLVM.
Variants§
C89
C
Ada83
CPlusPlus
Cobol74
Cobol85
Fortran77
Fortran90
Pascal83
Modula2
Java
C99
Ada95
Fortran95
PLI
ObjC
ObjCPlusPlus
UPC
D
Python
OpenCL
Go
Modula3
Haskell
CPlusPlus03
CPlusPlus11
OCaml
Rust
C11
Swift
Julia
Dylan
CPlusPlus14
Fortran03
Fortran08
RenderScript
BLISS
MipsAssembler
GOOGLERenderScript
BORLANDDelphi
Kotlin
Zig
Crystal
CPlusPlus17
CPlusPlus20
C17
Fortran18
Ada2005
Ada2012
Mojo
Trait Implementations§
source§impl Clone for DWARFSourceLanguage
impl Clone for DWARFSourceLanguage
source§fn clone(&self) -> DWARFSourceLanguage
fn clone(&self) -> DWARFSourceLanguage
Returns a copy 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 DWARFSourceLanguage
impl Debug for DWARFSourceLanguage
source§impl From<LLVMDWARFSourceLanguage> for DWARFSourceLanguage
impl From<LLVMDWARFSourceLanguage> for DWARFSourceLanguage
source§fn from(src: LLVMDWARFSourceLanguage) -> Self
fn from(src: LLVMDWARFSourceLanguage) -> Self
Converts to this type from the input type.
source§impl Hash for DWARFSourceLanguage
impl Hash for DWARFSourceLanguage
source§impl Into<LLVMDWARFSourceLanguage> for DWARFSourceLanguage
impl Into<LLVMDWARFSourceLanguage> for DWARFSourceLanguage
source§fn into(self) -> LLVMDWARFSourceLanguage
fn into(self) -> LLVMDWARFSourceLanguage
Converts this type into the (usually inferred) input type.
source§impl Ord for DWARFSourceLanguage
impl Ord for DWARFSourceLanguage
source§fn cmp(&self, other: &DWARFSourceLanguage) -> Ordering
fn cmp(&self, other: &DWARFSourceLanguage) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for DWARFSourceLanguage
impl PartialEq for DWARFSourceLanguage
source§fn eq(&self, other: &DWARFSourceLanguage) -> bool
fn eq(&self, other: &DWARFSourceLanguage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for DWARFSourceLanguage
impl PartialOrd for DWARFSourceLanguage
source§fn partial_cmp(&self, other: &DWARFSourceLanguage) -> Option<Ordering>
fn partial_cmp(&self, other: &DWARFSourceLanguage) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for DWARFSourceLanguage
impl Eq for DWARFSourceLanguage
impl StructuralPartialEq for DWARFSourceLanguage
Auto Trait Implementations§
impl Freeze for DWARFSourceLanguage
impl RefUnwindSafe for DWARFSourceLanguage
impl Send for DWARFSourceLanguage
impl Sync for DWARFSourceLanguage
impl Unpin for DWARFSourceLanguage
impl UnwindSafe for DWARFSourceLanguage
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more