Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TagPathError (0.08 sec)

  1. src/encoding/xml/typeinfo.go

    	}
    	tinfo.fields = append(tinfo.fields, *newf)
    	return nil
    }
    
    // A TagPathError represents an error in the unmarshaling process
    // caused by the use of field tags with conflicting paths.
    type TagPathError struct {
    	Struct       reflect.Type
    	Field1, Tag1 string
    	Field2, Tag2 string
    }
    
    func (e *TagPathError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top