Struct cargo::core::features::Features

source ·
pub struct Features {
Show 26 fields test_dummy_stable: bool, test_dummy_unstable: bool, alternative_registries: bool, edition: bool, rename_dependency: bool, publish_lockfile: bool, profile_overrides: bool, default_run: bool, metabuild: bool, public_dependency: bool, named_profiles: bool, resolver: bool, strip: bool, rust_version: bool, edition2021: bool, per_package_target: bool, codegen_backend: bool, different_binary_name: bool, profile_rustflags: bool, workspace_inheritance: bool, edition2024: bool, trim_paths: bool, open_namespaces: bool, activated: Vec<String>, nightly_features_allowed: bool, is_local: bool,
}
Expand description

Unstable feature context for querying if a new Cargo.toml syntax is allowed to use.

See the module-level documentation for the usage.

Fields§

§test_dummy_stable: bool§test_dummy_unstable: bool§alternative_registries: bool§edition: bool§rename_dependency: bool§publish_lockfile: bool§profile_overrides: bool§default_run: bool§metabuild: bool§public_dependency: bool§named_profiles: bool§resolver: bool§strip: bool§rust_version: bool§edition2021: bool§per_package_target: bool§codegen_backend: bool§different_binary_name: bool§profile_rustflags: bool§workspace_inheritance: bool§edition2024: bool§trim_paths: bool§open_namespaces: bool§activated: Vec<String>

The current activated features.

§nightly_features_allowed: bool

Whether is allowed to use any unstable features.

§is_local: bool

Whether the source manifest is from a local package.

Implementations§

source§

impl Features

source

fn status(&mut self, feature: &str) -> Option<(&mut bool, &'static Feature)>

source§

impl Features

source

pub fn new( features: &[String], gctx: &GlobalContext, warnings: &mut Vec<String>, is_local: bool ) -> CargoResult<Features>

Creates a new unstable features context.

source

fn add( &mut self, feature_name: &str, gctx: &GlobalContext, warnings: &mut Vec<String> ) -> CargoResult<()>

source

pub fn activated(&self) -> &[String]

Gets the current activated features.

source

pub fn require(&self, feature: &Feature) -> CargoResult<()>

Checks if the given feature is enabled.

source

pub fn is_enabled(&self, feature: &Feature) -> bool

Whether the given feature is allowed to use in this context.

Trait Implementations§

source§

impl Clone for Features

source§

fn clone(&self) -> Features

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Features

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Features

source§

fn default() -> Features

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 56 bytes