Enum syntax::feature_gate::UnstableFeatures  [−][src]
pub enum UnstableFeatures {
    Disallow,
    Allow,
    Cheat,
}Variants
DisallowHard errors for unstable features are active, as on beta/stable channels.
AllowAllow features to be activated, as on nightly.
CheatErrors are bypassed for bootstrapping. This is required any time during the build that feature-related lints are set to warn or above because the build turns on warnings-as-errors and uses lots of unstable features. As a result, this is always required for building Rust itself.
Methods
impl UnstableFeatures[src] 
impl UnstableFeaturespub fn from_environment() -> UnstableFeatures[src] 
pub fn from_environment() -> UnstableFeaturespub fn is_nightly_build(&self) -> bool[src] 
pub fn is_nightly_build(&self) -> boolTrait Implementations
impl Clone for UnstableFeatures[src] 
impl Clone for UnstableFeaturesfn clone(&self) -> UnstableFeatures[src] 
fn clone(&self) -> UnstableFeaturesReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for UnstableFeatures[src] 
impl Copy for UnstableFeaturesimpl Hash for UnstableFeatures[src] 
impl Hash for UnstableFeaturesAuto Trait Implementations
impl Send for UnstableFeatures
impl Send for UnstableFeaturesimpl Sync for UnstableFeatures
impl Sync for UnstableFeatures