pub struct FeatureView {
pub enabled: BTreeSet<String>,
}Expand description
Per-package feature view consumed by super::explain_feature.
Fields§
§enabled: BTreeSet<String>Names of features enabled on this package by the resolver. Empty when the resolver did not visit the package.
Auto Trait Implementations§
impl Freeze for FeatureView
impl RefUnwindSafe for FeatureView
impl Send for FeatureView
impl Sync for FeatureView
impl Unpin for FeatureView
impl UnsafeUnpin for FeatureView
impl UnwindSafe for FeatureView
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