#[non_exhaustive]pub enum FeatureLifecycle {
Experimental,
Stable,
Deprecated,
}Expand description
Feature lifecycle stage.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Experimental
Feature is under active development and may change.
Stable
Feature is production-ready with stable API.
Deprecated
Feature is scheduled for removal in a future release.
Trait Implementations§
Source§impl Clone for FeatureLifecycle
impl Clone for FeatureLifecycle
Source§fn clone(&self) -> FeatureLifecycle
fn clone(&self) -> FeatureLifecycle
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 FeatureLifecycle
impl Debug for FeatureLifecycle
Source§impl<'de> Deserialize<'de> for FeatureLifecycle
impl<'de> Deserialize<'de> for FeatureLifecycle
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FeatureLifecycle, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FeatureLifecycle, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for FeatureLifecycle
impl Display for FeatureLifecycle
Source§impl Hash for FeatureLifecycle
impl Hash for FeatureLifecycle
Source§impl PartialEq for FeatureLifecycle
impl PartialEq for FeatureLifecycle
Source§impl Serialize for FeatureLifecycle
impl Serialize for FeatureLifecycle
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for FeatureLifecycle
impl Eq for FeatureLifecycle
impl StructuralPartialEq for FeatureLifecycle
Auto Trait Implementations§
impl Freeze for FeatureLifecycle
impl RefUnwindSafe for FeatureLifecycle
impl Send for FeatureLifecycle
impl Sync for FeatureLifecycle
impl Unpin for FeatureLifecycle
impl UnsafeUnpin for FeatureLifecycle
impl UnwindSafe for FeatureLifecycle
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