pub enum DWARFSourceLanguage {
Show 40 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,
}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
Trait Implementations
sourceimpl Clone for DWARFSourceLanguage
impl Clone for DWARFSourceLanguage
sourcefn clone(&self) -> DWARFSourceLanguage
fn clone(&self) -> DWARFSourceLanguage
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DWARFSourceLanguage
impl Debug for DWARFSourceLanguage
sourceimpl From<LLVMDWARFSourceLanguage> for DWARFSourceLanguage
impl From<LLVMDWARFSourceLanguage> for DWARFSourceLanguage
sourcefn from(src: LLVMDWARFSourceLanguage) -> Self
fn from(src: LLVMDWARFSourceLanguage) -> Self
Converts to this type from the input type.
sourceimpl Hash for DWARFSourceLanguage
impl Hash for DWARFSourceLanguage
sourceimpl Into<LLVMDWARFSourceLanguage> for DWARFSourceLanguage
impl Into<LLVMDWARFSourceLanguage> for DWARFSourceLanguage
sourcefn into(self) -> LLVMDWARFSourceLanguage
fn into(self) -> LLVMDWARFSourceLanguage
Converts this type into the (usually inferred) input type.
sourceimpl Ord for DWARFSourceLanguage
impl Ord for DWARFSourceLanguage
sourcefn cmp(&self, other: &DWARFSourceLanguage) -> Ordering
fn cmp(&self, other: &DWARFSourceLanguage) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<DWARFSourceLanguage> for DWARFSourceLanguage
impl PartialEq<DWARFSourceLanguage> for DWARFSourceLanguage
sourcefn 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 ==. Read more
sourceimpl PartialOrd<DWARFSourceLanguage> for DWARFSourceLanguage
impl PartialOrd<DWARFSourceLanguage> for DWARFSourceLanguage
sourcefn partial_cmp(&self, other: &DWARFSourceLanguage) -> Option<Ordering>
fn partial_cmp(&self, other: &DWARFSourceLanguage) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn 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 more
impl Copy for DWARFSourceLanguage
impl Eq for DWARFSourceLanguage
impl StructuralEq for DWARFSourceLanguage
impl StructuralPartialEq for DWARFSourceLanguage
Auto Trait Implementations
impl RefUnwindSafe for DWARFSourceLanguage
impl Send for DWARFSourceLanguage
impl Sync for DWARFSourceLanguage
impl Unpin for DWARFSourceLanguage
impl UnwindSafe for DWARFSourceLanguage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more