Skip to content

Structure

ValidatorResults

struct ValidatorResults

Topics

Structures

  • struct And
    ValidatorResult of “And” Validator that combines two ValidatorResults. If both results are successful the combined result is as well.
  • struct Case
    ValidatorResult of a validator that validates whether the data can be represented as a specific Enum case.
  • struct CharacterSet
    ValidatorResult of a validator that validates that a String contains characters in a given CharacterSet.
  • struct Codable
  • struct CollectionCharacterSet
    ValidatorResult of a validator that validates that all elements of a [String] contain characters in a given CharacterSet.
  • struct Custom
  • struct Email
    ValidatorResult of a validator that validates whether a String is a valid email address.
  • struct Empty
    ValidatorResult of a validator that validates whether the data is empty.
  • struct In
    ValidatorResult of a validator that validates whether an item is contained in the supplied sequence.
  • struct Invalid
  • struct Missing
  • struct Nested
  • struct NestedEach
  • struct Nil
    ValidatorResult of a validator that validates that the data is nil.
  • struct NilIgnoring
    ValidatorResult of a validator that ignores nil values.
  • struct Not
  • struct NotFound
  • struct Or
    ValidatorResult of “Or” Validator that combines two ValidatorResults. If either result is successful the combined result is as well.
  • struct Pattern
    ValidatorResult of a validator that validates whether a Stringmatches a RegularExpression pattern
  • struct Range
    ValidatorResult of a validator that validates whether the input is within a supplied range.
  • struct Skipped
  • struct TypeMismatch
  • struct URL
    ValidatorResult of a validator that validates whether a string is a valid URL.
  • struct Valid
    ValidatorResult of a validator that validates that the data is valid`.