Enum guppy::errors::FeatureGraphWarning [−][src]
#[non_exhaustive]
pub enum FeatureGraphWarning {
MissingFeature {
stage: FeatureBuildStage,
package_id: PackageId,
feature_name: String,
},
}Expand description
Describes warnings emitted during feature graph construction.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
MissingFeature
Fields
stage: FeatureBuildStageThe stage of building the feature graph where the warning occurred.
package_id: PackageIdThe package ID for which the feature was requested.
feature_name: StringThe name of the feature.
A feature that was requested is missing from a package.
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 FeatureGraphWarning
impl Send for FeatureGraphWarning
impl Sync for FeatureGraphWarning
impl Unpin for FeatureGraphWarning
impl UnwindSafe for FeatureGraphWarning
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.