pub enum BuildPhase {
Idle,
Scanning,
Indexing,
}Expand description
Build phases for the Building state.
Variants§
Idle
No scan has started yet
Scanning
Workspace file discovery is in progress
Indexing
Symbol indexing is in progress
Trait Implementations§
Source§impl Clone for BuildPhase
impl Clone for BuildPhase
Source§fn clone(&self) -> BuildPhase
fn clone(&self) -> BuildPhase
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BuildPhase
impl Debug for BuildPhase
Source§impl Hash for BuildPhase
impl Hash for BuildPhase
Source§impl PartialEq for BuildPhase
impl PartialEq for BuildPhase
impl Copy for BuildPhase
impl Eq for BuildPhase
impl StructuralPartialEq for BuildPhase
Auto Trait Implementations§
impl Freeze for BuildPhase
impl RefUnwindSafe for BuildPhase
impl Send for BuildPhase
impl Sync for BuildPhase
impl Unpin for BuildPhase
impl UnsafeUnpin for BuildPhase
impl UnwindSafe for BuildPhase
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.