Enum rustc_ap_rustc_target::spec::SplitDebuginfo[][src]

pub enum SplitDebuginfo {
    Off,
    Packed,
    Unpacked,
}

Variants

Off

Split debug-information is disabled, meaning that on supported platforms you can find all debug information in the executable itself. This is only supported for ELF effectively.

  • Windows - not supported
  • macOS - don't run dsymutil
  • ELF - .dwarf_* sections
Packed

Split debug-information can be found in a "packed" location separate from the final artifact. This is supported on all platforms.

  • Windows - *.pdb
  • macOS - *.dSYM (run dsymutil)
  • ELF - *.dwp (run rust-llvm-dwp)
Unpacked

Split debug-information can be found in individual object files on the filesystem. The main executable may point to the object files.

  • Windows - not supported
  • macOS - supported, scattered object files
  • ELF - supported, scattered *.dwo files

Trait Implementations

impl Clone for SplitDebuginfo[src]

impl Copy for SplitDebuginfo[src]

impl Debug for SplitDebuginfo[src]

impl Display for SplitDebuginfo[src]

impl Eq for SplitDebuginfo[src]

impl FromStr for SplitDebuginfo[src]

type Err = ()

The associated error which can be returned from parsing.

impl Hash for SplitDebuginfo[src]

impl PartialEq<SplitDebuginfo> for SplitDebuginfo[src]

impl StructuralEq for SplitDebuginfo[src]

impl StructuralPartialEq for SplitDebuginfo[src]

impl ToJson for SplitDebuginfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> MaybeResult<T> for T[src]

type Error = !

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,