[][src]Enum rustc_ap_rustc_session::config::LtoCli

pub enum LtoCli {
    No,
    Yes,
    NoParam,
    Thin,
    Fat,
    Unspecified,
}

The different settings that the -C lto flag can have.

Variants

No

-C lto=no

Yes

-C lto=yes

NoParam

-C lto

Thin

-C lto=thin

Fat

-C lto=fat

Unspecified

No -C lto flag passed

Trait Implementations

impl Clone for LtoCli[src]

impl Copy for LtoCli[src]

impl Debug for LtoCli[src]

impl Hash for LtoCli[src]

impl PartialEq<LtoCli> for LtoCli[src]

impl StructuralPartialEq for LtoCli[src]

Auto Trait Implementations

impl RefUnwindSafe for LtoCli

impl Send for LtoCli

impl Sync for LtoCli

impl Unpin for LtoCli

impl UnwindSafe for LtoCli

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<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.