pub enum BuildPhase {
Primitives,
Collections,
TypeClasses,
Theorems,
Automation,
}Expand description
Represents a phase in the standard library build process.
Variants§
Primitives
Phase 1: Primitive types (Nat, Bool, Char, etc.)
Collections
Phase 2: Collection types (List, Array, Set, etc.)
TypeClasses
Phase 3: Type class definitions (Eq, Ord, Show, etc.)
Theorems
Phase 4: Core theorems and lemmas.
Automation
Phase 5: Automation (tactic lemmas, decision procedures).
Implementations§
Source§impl BuildPhase
impl BuildPhase
Sourcepub fn all_in_order() -> &'static [BuildPhase]
pub fn all_in_order() -> &'static [BuildPhase]
Returns all phases in build order.
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