Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DefaultNameSystem ¶
func DefaultNameSystem() string
DefaultNameSystem returns the default name system for ordering the types to be processed by the generators in this package.
func NameSystems ¶
func NameSystems() namer.NameSystems
NameSystems returns the name system used by the generators in this package.
Types ¶
type CustomArgs ¶
type CustomArgs struct { // Base peer dirs which nearly everybody will use, i.e. outside of Kubernetes core. Peer dirs // are declared to make the generator pick up manually written conversion funcs from external // packages. BasePeerDirs []string // Custom peer dirs which are application specific. Peer dirs are declared to make the // generator pick up manually written conversion funcs from external packages. ExtraPeerDirs []string // SkipUnsafe indicates whether to generate unsafe conversions to improve the efficiency // of these operations. The unsafe operation is a direct pointer assignment via unsafe // (within the allowed uses of unsafe) and is equivalent to a proposed Golang change to // allow structs that are identical to be assigned to each other. SkipUnsafe bool }
CustomArgs is used by the gengo framework to pass args specific to this generator.
func (*CustomArgs) AddFlags ¶
func (ca *CustomArgs) AddFlags(fs *pflag.FlagSet)
AddFlags add the generator flags to the flag set.
Click to show internal directories.
Click to hide internal directories.