reflect.Value.CanSet (method)

5 uses

	reflect (current package)
		value.go#L353: func (v Value) CanSet() bool {

	encoding/binary
		binary.go#L862: 			if v := v.Field(i); v.CanSet() || t.Field(i).Name != "_" {
		binary.go#L927: 			if v := v.Field(i); v.CanSet() || t.Field(i).Name != "_" {

	encoding/json
		decode.go#L465: 		if decodingNull && v.CanSet() {
		decode.go#L712: 							if !subv.CanSet() {