Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LookupPatchMetadataForStruct (0.17 sec)

  1. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    // struct field given the struct type and the JSON name of the field.
    // It returns field type, a slice of patch strategies, merge key and error.
    // TODO: fix the returned errors to be introspectable.
    func LookupPatchMetadataForStruct(t reflect.Type, jsonField string) (
    	elemType reflect.Type, patchStrategies []string, patchMergeKey string, e error) {
    	if t.Kind() == reflect.Pointer {
    		t = t.Elem()
    	}
    
    	if t.Kind() != reflect.Struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
Back to top