Enum guppy::errors::FeatureBuildStage [−][src]
#[non_exhaustive]
pub enum FeatureBuildStage {
AddNamedFeatureEdges {
package_id: PackageId,
from_feature: String,
},
AddDependencyEdges {
package_id: PackageId,
dep_name: String,
},
}Expand description
Describes the stage of construction at which a feature graph warning occurred.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
AddNamedFeatureEdges
Fields
package_id: PackageIdThe package ID for which edges were being added.
from_feature: StringThe feature name from which edges were being added.
The warning occurred while adding edges for the [features] section of Cargo.toml.
AddDependencyEdges
Fields
package_id: PackageIdThe package ID for which edges were being added.
dep_name: StringThe name of the dependency.
The warning occurred while adding dependency edges.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for FeatureBuildStage
impl Send for FeatureBuildStage
impl Sync for FeatureBuildStage
impl Unpin for FeatureBuildStage
impl UnwindSafe for FeatureBuildStage
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.