pub enum BuildPhase {
Starting,
Compiling,
BuildScript,
Linking,
Testing,
DocTest,
Finished,
}Expand description
Build phases during compilation.
Variants§
Starting
Initial state before any output.
Compiling
Compiling crates.
BuildScript
Running build scripts (build.rs).
Linking
Linking final binary.
Testing
Running tests.
DocTest
Running documentation tests.
Finished
Finished (success or failure).
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 (const: unstable) · 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 Default for BuildPhase
impl Default for BuildPhase
Source§fn default() -> BuildPhase
fn default() -> BuildPhase
Returns the “default value” for a type. Read more
Source§impl PartialEq for BuildPhase
impl PartialEq for BuildPhase
Source§fn eq(&self, other: &BuildPhase) -> bool
fn eq(&self, other: &BuildPhase) -> bool
Tests for
self and other values to be equal, and is used by ==.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.