validators

package
v1.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 24, 2019 License: MIT Imports: 6 Imported by: 62

Documentation

Index

Constants

This section is empty.

Variables

View Source
var CustomKeys = map[string]string{}

Functions

func GenerateKey

func GenerateKey(s string) string

Types

type BytesArePresent

type BytesArePresent struct {
	Name  string
	Field []byte
}

func (*BytesArePresent) IsValid

func (v *BytesArePresent) IsValid(errors *validate.Errors)

type FuncValidator

type FuncValidator struct {
	Fn      func() bool
	Field   string
	Message string
}

func (*FuncValidator) IsValid

func (f *FuncValidator) IsValid(verrs *validate.Errors)

type IntArrayIsPresent

type IntArrayIsPresent struct {
	Name  string
	Field []int
}

func (*IntArrayIsPresent) IsValid

func (v *IntArrayIsPresent) IsValid(errors *validate.Errors)

type IntIsPresent

type IntIsPresent struct {
	Name  string
	Field int
}

func (*IntIsPresent) IsValid

func (v *IntIsPresent) IsValid(errors *validate.Errors)

type RegexMatch

type RegexMatch struct {
	Name  string
	Field string
	Expr  string
}

RegexMatch specifies the properties needed by the validation.

func (*RegexMatch) IsValid

func (v *RegexMatch) IsValid(errors *validate.Errors)

IsValid performs the validation based on the regexp match.

type StringInclusion

type StringInclusion struct {
	Name  string
	Field string
	List  []string
}

func (*StringInclusion) IsValid

func (v *StringInclusion) IsValid(errors *validate.Errors)

type StringIsPresent

type StringIsPresent struct {
	Name  string
	Field string
}

func (*StringIsPresent) IsValid

func (v *StringIsPresent) IsValid(errors *validate.Errors)

type TimeIsBeforeTime

type TimeIsBeforeTime struct {
	FirstName  string
	FirstTime  time.Time
	SecondName string
	SecondTime time.Time
}

func (*TimeIsBeforeTime) IsValid

func (v *TimeIsBeforeTime) IsValid(errors *validate.Errors)

type TimeIsPresent

type TimeIsPresent struct {
	Name  string
	Field time.Time
}

func (*TimeIsPresent) IsValid

func (v *TimeIsPresent) IsValid(errors *validate.Errors)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL