sec/field.go

22 lines
499 B
Go
Raw Normal View History

2019-09-17 18:39:37 +05:00
package sec
import (
"reflect"
)
// This structure represents every parsable field that was found while
// reading passed structure.
type field struct {
// Name is a field name. Mostly for debugging purpose.
Name string
// Pointer is a pointer to field wrapped in reflect.Value.
Pointer reflect.Value
// EnvVar is a name of environment variable we will try to read.
EnvVar string
// Kind is a reflect.Kind value.
Kind reflect.Kind
// Next variables are tag-related.
2020-11-21 21:25:16 +05:00
// optional bool
2019-09-17 18:39:37 +05:00
}