[][src]Enum rustc_ap_rustc_session::config::Lto

pub enum Lto {
    No,
    Thin,
    ThinLocal,
    Fat,
}

This is what the LtoCli values get mapped to after resolving defaults and and taking other command line options into account.

Variants

No

Don't do any LTO whatsoever

Thin

Do a full crate graph LTO with ThinLTO

ThinLocal

Do a local graph LTO with ThinLTO (only relevant for multiple codegen units).

Fat

Do a full crate graph LTO with "fat" LTO

Trait Implementations

impl Clone for Lto[src]

impl PartialEq<Lto> for Lto[src]

impl StructuralPartialEq for Lto[src]

Auto Trait Implementations

impl RefUnwindSafe for Lto

impl Send for Lto

impl Sync for Lto

impl Unpin for Lto

impl UnwindSafe for Lto

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<T> Erased for T[src]

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

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

impl<E> SpecializationError for E[src]

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.