pub enum ImplementationPhase {
Phase1,
Phase2,
Phase3,
Phase4,
}Expand description
Phase categorization from the catalog
Variants§
Phase1
Phase 1: Hello World Barrier (Bootstrapping) Required to compile lib.d.ts and basic variables
Phase2
Phase 2: Business Logic Barrier (Common Patterns) Required for standard application code
Phase3
Phase 3: Library Barrier (Complex Types) Required for modern npm packages
Phase4
Phase 4: Feature Barrier (Edge Cases) Required for 100% test suite compliance
Trait Implementations§
Source§impl Clone for ImplementationPhase
impl Clone for ImplementationPhase
Source§fn clone(&self) -> ImplementationPhase
fn clone(&self) -> ImplementationPhase
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 ImplementationPhase
impl Debug for ImplementationPhase
Source§impl Display for ImplementationPhase
impl Display for ImplementationPhase
Source§impl PartialEq for ImplementationPhase
impl PartialEq for ImplementationPhase
impl Copy for ImplementationPhase
impl Eq for ImplementationPhase
impl StructuralPartialEq for ImplementationPhase
Auto Trait Implementations§
impl Freeze for ImplementationPhase
impl RefUnwindSafe for ImplementationPhase
impl Send for ImplementationPhase
impl Sync for ImplementationPhase
impl Unpin for ImplementationPhase
impl UnsafeUnpin for ImplementationPhase
impl UnwindSafe for ImplementationPhase
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§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.