[][src]Enum rustc_ap_rustc_session::IncrCompSession

pub enum IncrCompSession {
    NotInitialized,
    Active {
        session_directory: PathBuf,
        lock_file: Lock,
        load_dep_graph: bool,
    },
    Finalized {
        session_directory: PathBuf,
    },
    InvalidBecauseOfErrors {
        session_directory: PathBuf,
    },
}

Holds data on the current incremental compilation session, if there is one.

Variants

NotInitialized

This is the state the session will be in until the incr. comp. dir is needed.

Active

This is the state during which the session directory is private and can be modified.

Fields of Active

session_directory: PathBuflock_file: Lockload_dep_graph: bool
Finalized

This is the state after the session directory has been finalized. In this state, the contents of the directory must not be modified any more.

Fields of Finalized

session_directory: PathBuf
InvalidBecauseOfErrors

This is an error state that is reached when some compilation error has occurred. It indicates that the contents of the session directory must not be used, since they might be invalid.

Fields of InvalidBecauseOfErrors

session_directory: PathBuf

Trait Implementations

impl Debug for IncrCompSession[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<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, 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>,