RuleAnnotationValue

public enum RuleAnnotationValue : CustomStringConvertible, Equatable

Represents the value for a rule annotation

  • A String value

    Declaration

    Swift

    case string(String)
  • A Bool value

    Declaration

    Swift

    case bool(Bool)
  • An Int value

    Declaration

    Swift

    case int(Int)
  • set

    No value, but the annotation was present

    Declaration

    Swift

    case set
  • A human readable description of the annotation value

    Declaration

    Swift

    public var description: String { get }