pub enum Status {
OptIn,
OptOut,
DeprecatedDefault,
DeprecatedDiscard,
}Expand description
The status of an experimental option.
An option can either be disabled by default (OptIn) or enabled by default
(OptOut), depending on its expected stability.
Experimental options can be deprecated in two ways:
- If the feature becomes default behavior, it’s marked as
DeprecatedDefault. - If the feature is being fully removed, it’s marked as
DeprecatedDiscardand triggers a warning.
Variants§
OptIn
Disabled by default.
OptOut
Enabled by default.
DeprecatedDefault
Deprecated as an experimental option; now default behavior.
DeprecatedDiscard
Deprecated; the feature will be removed and triggers a warning.
Trait Implementations§
impl Copy for Status
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more