[][src]Enum rustc_ap_rustc_session::config::TrimmedDefPaths

pub enum TrimmedDefPaths {
    Never,
    Always,
    GoodPath,
}

Parameter to control path trimming.

Variants

Never

try_print_trimmed_def_path never prints a trimmed path and never calls the expensive query

Always

try_print_trimmed_def_path calls the expensive query, the query doesn't call delay_good_path_bug

GoodPath

try_print_trimmed_def_path calls the expensive query, the query calls delay_good_path_bug

Trait Implementations

impl Clone for TrimmedDefPaths[src]

impl Copy for TrimmedDefPaths[src]

impl Debug for TrimmedDefPaths[src]

impl Default for TrimmedDefPaths[src]

impl Eq for TrimmedDefPaths[src]

impl Hash for TrimmedDefPaths[src]

impl PartialEq<TrimmedDefPaths> for TrimmedDefPaths[src]

impl StructuralEq for TrimmedDefPaths[src]

impl StructuralPartialEq for TrimmedDefPaths[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, 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>,