pub struct CfgOptions { /* private fields */ }
Expand description
Configuration options used for conditional compilation on items with cfg
attributes.
We have two kind of options in different namespaces: atomic options like unix
, and
key-value options like target_arch="x86"
.
Note that for key-value options, one key can have multiple values (but not none).
feature
is an example. We have both feature="foo"
and feature="bar"
if features
foo
and bar
are both enabled. And here, we store key-value options as a set of tuple
of key and value in key_values
.
See: https://doc.rust-lang.org/reference/conditional-compilation.html#set-configuration-options
Implementations§
Source§impl CfgOptions
impl CfgOptions
pub fn check(&self, cfg: &CfgExpr) -> Option<bool>
pub fn check_atom(&self, cfg: &CfgAtom) -> bool
pub fn insert_atom(&mut self, key: Symbol)
pub fn insert_key_value(&mut self, key: Symbol, value: Symbol)
pub fn apply_diff(&mut self, diff: CfgDiff)
pub fn get_cfg_keys(&self) -> impl Iterator<Item = &Symbol>
pub fn get_cfg_values<'a>( &'a self, cfg_key: &'a str, ) -> impl Iterator<Item = &'a Symbol> + 'a
pub fn to_hashable(&self) -> HashableCfgOptions
Trait Implementations§
Source§impl Clone for CfgOptions
impl Clone for CfgOptions
Source§fn clone(&self) -> CfgOptions
fn clone(&self) -> CfgOptions
Returns a copy 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 CfgOptions
impl Debug for CfgOptions
Source§impl Default for CfgOptions
impl Default for CfgOptions
Source§impl Extend<CfgAtom> for CfgOptions
impl Extend<CfgAtom> for CfgOptions
Source§fn extend<T: IntoIterator<Item = CfgAtom>>(&mut self, iter: T)
fn extend<T: IntoIterator<Item = CfgAtom>>(&mut self, iter: T)
Extends a collection with the contents of an iterator. Read more
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one
)Extends a collection with exactly one element.
Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
Source§impl FromIterator<CfgAtom> for CfgOptions
impl FromIterator<CfgAtom> for CfgOptions
Source§impl<'a> IntoIterator for &'a CfgOptions
impl<'a> IntoIterator for &'a CfgOptions
Source§impl IntoIterator for CfgOptions
impl IntoIterator for CfgOptions
Source§impl PartialEq for CfgOptions
impl PartialEq for CfgOptions
impl Eq for CfgOptions
impl StructuralPartialEq for CfgOptions
Auto Trait Implementations§
impl Freeze for CfgOptions
impl RefUnwindSafe for CfgOptions
impl Send for CfgOptions
impl Sync for CfgOptions
impl Unpin for CfgOptions
impl UnwindSafe for CfgOptions
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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