#[non_exhaustive]pub enum FeatureAllowed {
Always,
Yes,
No,
}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.
Trait Implementations§
Source§impl Clone for FeatureAllowed
impl Clone for FeatureAllowed
Source§fn clone(&self) -> FeatureAllowed
fn clone(&self) -> FeatureAllowed
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 FeatureAllowed
impl Debug for FeatureAllowed
Source§impl Default for FeatureAllowed
impl Default for FeatureAllowed
Source§fn default() -> FeatureAllowed
fn default() -> FeatureAllowed
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FeatureAllowed
impl<'de> Deserialize<'de> for FeatureAllowed
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 Hash for FeatureAllowed
impl Hash for FeatureAllowed
Source§impl PartialEq for FeatureAllowed
impl PartialEq for FeatureAllowed
Source§impl Serialize for FeatureAllowed
impl Serialize for FeatureAllowed
impl Copy for FeatureAllowed
impl Eq for FeatureAllowed
impl StructuralPartialEq for FeatureAllowed
Auto Trait Implementations§
impl Freeze for FeatureAllowed
impl RefUnwindSafe for FeatureAllowed
impl Send for FeatureAllowed
impl Sync for FeatureAllowed
impl Unpin for FeatureAllowed
impl UnwindSafe for FeatureAllowed
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