Enum inkwell::debug_info::DWARFEmissionKind  
source · pub enum DWARFEmissionKind {
    None,
    Full,
    LineTablesOnly,
}Expand description
The amount of debug information to emit. Corresponds to LLVMDWARFEmissionKind enum from LLVM.
Variants§
Trait Implementations§
source§impl Clone for DWARFEmissionKind
 
impl Clone for DWARFEmissionKind
source§fn clone(&self) -> DWARFEmissionKind
 
fn clone(&self) -> DWARFEmissionKind
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 DWARFEmissionKind
 
impl Debug for DWARFEmissionKind
source§impl From<LLVMDWARFEmissionKind> for DWARFEmissionKind
 
impl From<LLVMDWARFEmissionKind> for DWARFEmissionKind
source§fn from(src: LLVMDWARFEmissionKind) -> Self
 
fn from(src: LLVMDWARFEmissionKind) -> Self
Converts to this type from the input type.
source§impl Hash for DWARFEmissionKind
 
impl Hash for DWARFEmissionKind
source§impl Into<LLVMDWARFEmissionKind> for DWARFEmissionKind
 
impl Into<LLVMDWARFEmissionKind> for DWARFEmissionKind
source§fn into(self) -> LLVMDWARFEmissionKind
 
fn into(self) -> LLVMDWARFEmissionKind
Converts this type into the (usually inferred) input type.
source§impl Ord for DWARFEmissionKind
 
impl Ord for DWARFEmissionKind
source§fn cmp(&self, other: &DWARFEmissionKind) -> Ordering
 
fn cmp(&self, other: &DWARFEmissionKind) -> 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 DWARFEmissionKind
 
impl PartialEq for DWARFEmissionKind
source§fn eq(&self, other: &DWARFEmissionKind) -> bool
 
fn eq(&self, other: &DWARFEmissionKind) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd for DWARFEmissionKind
 
impl PartialOrd for DWARFEmissionKind
source§fn partial_cmp(&self, other: &DWARFEmissionKind) -> Option<Ordering>
 
fn partial_cmp(&self, other: &DWARFEmissionKind) -> 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 DWARFEmissionKind
impl Eq for DWARFEmissionKind
impl StructuralEq for DWARFEmissionKind
impl StructuralPartialEq for DWARFEmissionKind
Auto Trait Implementations§
impl RefUnwindSafe for DWARFEmissionKind
impl Send for DWARFEmissionKind
impl Sync for DWARFEmissionKind
impl Unpin for DWARFEmissionKind
impl UnwindSafe for DWARFEmissionKind
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