pub trait PackageExt {
    fn each_feature(&self) -> EachFeature<'_>Notable traits for EachFeature<'a>impl<'a> Iterator for EachFeature<'a>    type Item = FeatureOption<'a>;;
    fn root_directory(&self) -> &Utf8Path;
}
Expand description

Extension methods for cargo_metadata::Package.

Required Methods

Returns the iterator over each feature options for the package.

Returns the package root directory.

Implementations on Foreign Types

Implementors