pub enum PhaseStatus {
Current,
Compatibility,
PhaseGated,
}Expand description
Phase status for a feature or behavior.
Used in code comments and metadata to distinguish implemented features from planned ones. Prevents confusion about what is actually working.
Variants§
Current
Fully implemented and tested.
Compatibility
Exists only for migration compatibility; will be removed.
PhaseGated
Planned for a future phase; not yet implemented.
Implementations§
Trait Implementations§
Source§impl Clone for PhaseStatus
impl Clone for PhaseStatus
Source§fn clone(&self) -> PhaseStatus
fn clone(&self) -> PhaseStatus
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 PhaseStatus
impl Debug for PhaseStatus
Source§impl<'de> Deserialize<'de> for PhaseStatus
impl<'de> Deserialize<'de> for PhaseStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PhaseStatus
impl Display for PhaseStatus
Source§impl JsonSchema for PhaseStatus
impl JsonSchema for PhaseStatus
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for PhaseStatus
impl PartialEq for PhaseStatus
Source§fn eq(&self, other: &PhaseStatus) -> bool
fn eq(&self, other: &PhaseStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PhaseStatus
impl Serialize for PhaseStatus
impl Copy for PhaseStatus
impl Eq for PhaseStatus
impl StructuralPartialEq for PhaseStatus
Auto Trait Implementations§
impl Freeze for PhaseStatus
impl RefUnwindSafe for PhaseStatus
impl Send for PhaseStatus
impl Sync for PhaseStatus
impl Unpin for PhaseStatus
impl UnsafeUnpin for PhaseStatus
impl UnwindSafe for PhaseStatus
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