FeatureConstraintStatus

public enum FeatureConstraintStatus : Hashable

This type represents the current status of a single constraint on a feature, after evaluation by the FeatureConstraintsEvaluator.

See

FeatureConstraintsEvaluator and FeatureConstraintsEvaluation
  • The constraint is not currectly active, e.g. it does not apply to the current runtime platform

    Declaration

    Swift

    case notActive
  • Indicates that the constraint is active, but it is not yet known whether it is satisfied or not, pending further (usually asynchronous) checks.

    Declaration

    Swift

    case notDetermined
  • Indicates that the constraint has not been satisfied, and hence the feature cannot be used

    Declaration

    Swift

    case notSatisfied
  • Indicates that the constraint is satisfied, and the feature can be used if all other constraints are also satisfied.

    Declaration

    Swift

    case satisfied