pub enum CoreStatus {
Complete,
Incomplete,
Unknown,
}Expand description
Whether the tier-scaled gated core is complete.
The gated core is README + LICENSE + CI, but the CI leg only gates at mvp
and above: a spike is not being published, so it is gated on README +
LICENSE alone and CI is reported as a (non-blocking) gap toward mvp
(design §4). Unknown is a forward-compatible third state; today every core
leg is a determinate filesystem probe, so the core resolves to
Complete/Incomplete.
Variants§
Complete
Every applicable core artifact is present.
Incomplete
At least one applicable core artifact is absent.
Unknown
A core leg could not be determined (never today; reserved).
Implementations§
Trait Implementations§
Source§impl Clone for CoreStatus
impl Clone for CoreStatus
Source§fn clone(&self) -> CoreStatus
fn clone(&self) -> CoreStatus
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 moreimpl Copy for CoreStatus
Source§impl Debug for CoreStatus
impl Debug for CoreStatus
impl Eq for CoreStatus
Source§impl PartialEq for CoreStatus
impl PartialEq for CoreStatus
Source§impl Serialize for CoreStatus
impl Serialize for CoreStatus
impl StructuralPartialEq for CoreStatus
Auto Trait Implementations§
impl Freeze for CoreStatus
impl RefUnwindSafe for CoreStatus
impl Send for CoreStatus
impl Sync for CoreStatus
impl Unpin for CoreStatus
impl UnsafeUnpin for CoreStatus
impl UnwindSafe for CoreStatus
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.